Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
75 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 ...
2
votes
5answers
111 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
380 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
812 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 ...
1
vote
2answers
288 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 ...
0
votes
1answer
84 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 ...
0
votes
0answers
87 views

How Visual Studio 2010 obtain “call hierarchy” and “find all references”?

Visual Studio 2010 provides convenient functionalities such as "Find All References" and "View Call Hierarchy". Upon building the project successfully, you can select an entity, say a method name, and ...
0
votes
4answers
241 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 ...