Call Hierarchy enables you to navigate through your code by displaying all calls to and from a selected method, property, or constructor. This enables you to better understand how code flows and to evaluate the effects of changes to code. You can examine several levels of code to view complex chains ...

learn more… | top users | synonyms

0
votes
0answers
30 views

eclipse call hierarchy incomplete

When I execute a call hierarchy (Eclipse Indigo) the results I receive are fewer than I know exist. Strange thing is this functionality seemed to be working only a few weeks ago. When I run the ...
0
votes
0answers
55 views

Eclipse IDE - Open Call Hierarchy is empty/broken

What should I do, if the "Open Call Hierarchy" is broken (empty for every method in a project)? It is very useful for code navigation, do not know, how to work without it!
1
vote
0answers
157 views

Eclipse call hierarchy for CDT not fully working

The eclipse call hierarchy for CDT is not showing all function calls for some of my functions. All of my source is within the project folder. I tried adding the locations to project->properties->C/C++ ...
3
votes
0answers
48 views

How to get call relations of an open solution by using a plugin

I try to develop a VSPackage for VS 2010 that investigates all the available methods in the current solution and to reconstruct the call relations of each single method just like the built in Call ...
2
votes
2answers
314 views

Obtaining call hierarchy in Eclipse CDT

I am developing a plugin for Eclipse CDT and I want to generate the call hierarchy of a function. Is it possible without having to traverse the Syntax Tree of every file myself?
2
votes
5answers
1k views

how to trace function call in C?

Without modifying the source code, how can i trace which functions are called and with what parameters, when some function(say func100 in the following example) is invoked. I would like the output to ...
0
votes
1answer
305 views

Accessing Eclipse's call hierarchy programmatically

I need to programmatically generate a call graph as part of an Eclipse plugin. I know Eclipse has the built-in Open Call Hierarchy function available, but I haven't been able to find a way to access ...
4
votes
1answer
256 views

Get method calls of IMethod through eclipse CallHierarchy

I am looking to get IMethod, IType or IJavaElement in which a IMethod is being called. I explored org.eclipse.jdt.internal.corext.callhierarchy.CallHierarchy. I have written this code but its not ...
0
votes
2answers
315 views

Visual Studio Call Hierarchy : How to find calls through an implemented interface to a method?

with Visual Studio Call Hierarchy functionality I can find calls to a certain method. However, it doesn't seem to be able to find class through an implemented interface. Like in the following, if ...
3
votes
2answers
186 views

Multi-threaded time-based call hierarchy

I am using eclipse to write java code. If I'm debugging some code I can set a breakpoint and follow along as the code goes through each of the functions or I can backtrack. I can also look at the ...
2
votes
1answer
121 views

Is there a utility for Delphi 6 that analyzes class hierarchies and can be queried for method ancestry?

Is there a tool for Delphi 6 that can analyze the class hierarchy of your application and answer questions about particular methods? I could use a tool that could take a particular method name and it ...
0
votes
1answer
339 views

Visual studio C++ IntelliSense issue

I seem to be having two issues with my project after I converted from VS 2005 to VS 2010. IntelliSense: command-line error: invalid macro definition: _WIN32_WINNT>=0x0501 And I also cant seem ...
5
votes
5answers
3k views

Order of calling constructors/destructors in inheritance, c++

a little questiong about creating objects. Say I have these two classes: struct A{ A(){cout << "A() C-tor" << endl;} ~A(){cout << "~A() D-tor" << endl;} }; ...
1
vote
3answers
1k views

Invoking call hierarchy from eclipse plug in

I want to write an eclipse plugin which can take a list of class names and return me a table of classes where they are being referenced in a given project. I was thinking if i can use eclipse cal ...
1
vote
3answers
4k views

More Intelligent Eclipse “Open Call Hierarchy”?

If I have a Java project in Eclipse, I can right-click on a method name and "Open Call Hierarchy." Suppose I have two interfaces, A and B, that both specify a method x(). Is it possible for me to ...
3
votes
3answers
797 views

IntelliJ call hierarchy of fields

Eclipse JDT has a 'call hierarchy' feature -- start from a field/method and it recursively finds all references. IntelliJ also implements this, but it only works from methods. For fields, you can ...
2
votes
5answers
808 views

Filter Eclipse's “Open Call Hierarchy” to just my company/project

One of my favorite features of Eclipse is the ability to open a caller/callee hierarchy of a method. By default, the view shows calls to/from classes that are outside of my codebase... which I don't ...