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
link|improve this question

Do you mean a cross-reference like this lxr.linux.no/#linux+v2.6.39/init/main.c? – belisarius May 30 '11 at 21:08
@belisarius: Thanks for Linux Cross Referencer Link. In a first look at it, it seems, that the search result of the cross referencer gives me the file names and line numbers. With a click on the usage I see the context. In my searches the filename often does not reflect the functions inside the file. Therefore the output of the function name before the filename is more important to me. – Christian Ammer May 30 '11 at 21:34
I just wanted to know if you are after a cross reference generator. What kind of info you display following links was not intended as the main part of my comment. Sorry for the misunderstanding. – belisarius May 30 '11 at 21:45
@belisarius: The code isn't preprocessed by a cross referencer (as you probably know, after my last comment) – Christian Ammer May 30 '11 at 22:06
1  
@Jeff Atwood: Why did you close the question, is it really off topic? I think the question covers the software tools commonly used by programmers topic (see FAQ). And there are good questions that are also about searching tools for programmers. – Christian Ammer Jun 4 '11 at 20:24
feedback

closed as off topic by Jeff Atwood Jun 2 '11 at 11:53

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.