I'm looking for a free code search utility with a output, different from the ones I know. Instead of printing the file and line number and some lines of the context, I would like to know:
- within which class,
- within which function
the pattern was found. When reading code not written by me, then I'm often looking for a keyword or class property and like to know which class, function is using it (just to get an overview and a hint, where I should continue reading, to understand the whole part).
Do you know such a tool?
Thanks!
Example: I will try to explain what I'm thinking about, through a simple example.
struct SomeStruct { int someProperty; };
class SomeClass
{
SomeStruct mS;
public:
SomeClass()
{
mS.someProperty = 10;
}
};
void someFuncA()
{
SomeStruct s;
s.someProperty = 10;
}
void someFuncB()
{
someFuncA();
}
int main(void)
{
someFuncB();
SomeClass x;
}
Search Result: For the pattern someProperty, the tool could give an output like following.
Definitions:
SomeStruct::someProperty
Function Tree View:
main(void) not direct
someFuncB() not direct
someFuncA() direct
SomeClass::SomeClass() direct