Quick find a field or method in Eclipse's workspace

eclipse, keyboard-shortcuts

Solution

`ctrl+o` (`cmd+o`) opens the quick outline where you can search for a method within the current class. Pressing `ctrl+o` again extends the search scope to the complete class hierarchy.

Problem

I find it extremely useful to use the Ctrl(cmd)+o shortcut on Eclipse to find a member field or method in a class (and use it again to get the ones from the super class). However, I would like to know if there is a similar way to quickly search in the project and/or workspace for a field or method you know the name of but not where it is (similarly to how it is done to find a type Ctrl(cmd)+Shift+T or a resource Ctrl(cmd)+Shift+R). If is not available where can I request it?

Original source