This would be very helpful sometimes for finding things in unreal engine.
For example: - I know there's a method somewhere whose name contains "build" and one of the arguments is an FMeshDescription. I have no idea where it is. Searching build by itself returns tens of thousands of results.
- It would allow to search for methods like these:
We are considering letting the Find Symbol dialog search the parameter list as well:
case=61242
I don't suppose you have any idea of the class the function you are looking for might be in? The case was originally opened for friend functions, since it is clearly helpful here.
Are you aware you can several filters at once, and use a - in front of a filter to exclude terms you don't want to see? This might help you narrow down the list to a more manageable size.
there are three search terms, and they are all applied, regardless of order. The first term searches for "build" in the symbol name.
The second term uses a minus sign, so it filters out. Next the dot means start / end of word, so start of word since it is at the front. So any symbol who's name starts with build is filtered out.
The third term filters out all symbols where the name starts with an underscore, which filters out most of the macros.
You can quickly get quite specific using include and exclude filters, but you still need some idea of the name of the symbol you are searching for.
Also the option:
Find Symbol dialog -> Right click menu -> Match case of search strings that contain uppercase letters
can be helpful if you are sure of the case of one of the words you are searching for.