In Eclipse, how can I find all usages of a function in a Java app? What is the shortcut for that?
I tried with Ctrl+H to search by method, but it r
Select a method and hit Ctrl+Alt+H to open its Call Hierarchy which will show you where the method is being called from.