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

/external/clang/include/clang/Analysis/
H A DCallGraph.h142 SmallVector<CallRecord, 5> CalledFunctions; member in class:clang::CallGraphNode
151 inline iterator begin() { return CalledFunctions.begin(); }
152 inline iterator end() { return CalledFunctions.end(); }
153 inline const_iterator begin() const { return CalledFunctions.begin(); }
154 inline const_iterator end() const { return CalledFunctions.end(); }
156 inline bool empty() const {return CalledFunctions.empty(); }
157 inline unsigned size() const {return CalledFunctions.size(); }
160 CalledFunctions.push_back(N);
/external/llvm/include/llvm/Analysis/
H A DCallGraph.h182 std::vector<CallRecord> CalledFunctions; member in class:llvm::CallGraphNode
185 /// in the CalledFunctions array of this or other CallGraphNodes.
213 inline iterator begin() { return CalledFunctions.begin(); }
214 inline iterator end() { return CalledFunctions.end(); }
215 inline const_iterator begin() const { return CalledFunctions.begin(); }
216 inline const_iterator end() const { return CalledFunctions.end(); }
217 inline bool empty() const { return CalledFunctions.empty(); }
218 inline unsigned size() const { return (unsigned)CalledFunctions.size(); }
227 assert(i < CalledFunctions.size() && "Invalid index");
228 return CalledFunctions[
[all...]
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp3271 SmallPtrSet<const Function *, 8> &CalledFunctions) {
3293 SmallPtrSet<const Function *, 8> NewCalledFunctions(CalledFunctions);
3341 SmallPtrSet<const Function *, 8> CalledFunctions; local
3342 if (!cxxDtorIsEmpty(*DtorFn, CalledFunctions))
3270 cxxDtorIsEmpty(const Function &Fn, SmallPtrSet<const Function *, 8> &CalledFunctions) argument

Completed in 138 milliseconds