Searched defs:CallGraph (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/Index/
H A DCallGraph.cpp1 //== CallGraph.cpp - Call graph building ------------------------*- C++ -*--==//
10 // This file defined the CallGraph and CGBuilder classes.
14 #include "clang/Index/CallGraph.h"
27 CallGraph &G;
35 CGBuilder(CallGraph &g, FunctionDecl *fd, Entity E, CallGraphNode *N)
58 CallGraph::CallGraph(Program &P) : Prog(P), Root(0) { function in class:CallGraph
62 CallGraph::~CallGraph() {
71 void CallGraph
[all...]
/external/llvm/include/llvm/Analysis/
H A DCallGraph.h1 //===- CallGraph.h - Build a Module's call graph ----------------*- C++ -*-===//
39 // Because of these properties, the CallGraph captures a conservative superset
43 // The CallGraph class also attempts to figure out what the root of the
44 // CallGraph is, which it currently does by looking for a function named 'main'.
70 // CallGraph class definition
72 class CallGraph { class in namespace:llvm
152 CallGraph() {} function in class:llvm::CallGraph
155 virtual ~CallGraph() { destroy(); }
158 /// re/initializes the state of the CallGraph.
173 friend class CallGraph;
[all...]
/external/clang/include/clang/Index/
H A DCallGraph.h1 //== CallGraph.cpp - Call graph building ------------------------*- C++ -*--==//
10 // This file defined the CallGraph and CallGraphNode classes.
55 class CallGraph { class in namespace:clang
74 CallGraph(idx::Program &P);
75 ~CallGraph();
107 template <> struct GraphTraits<clang::CallGraph> {
108 typedef clang::CallGraph GraphType;

Completed in 138 milliseconds