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

/external/clang/include/clang/Analysis/
H A DCallGraph.h149 llvm::SmallVector<CallRecord, 5> CalledFunctions; member in class:clang::CallGraphNode
158 inline iterator begin() { return CalledFunctions.begin(); }
159 inline iterator end() { return CalledFunctions.end(); }
160 inline const_iterator begin() const { return CalledFunctions.begin(); }
161 inline const_iterator end() const { return CalledFunctions.end(); }
163 inline bool empty() const {return CalledFunctions.empty(); }
164 inline unsigned size() const {return CalledFunctions.size(); }
167 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.cpp3027 SmallPtrSet<const Function *, 8> &CalledFunctions) {
3049 SmallPtrSet<const Function *, 8> NewCalledFunctions(CalledFunctions);
3097 SmallPtrSet<const Function *, 8> CalledFunctions; local
3098 if (!cxxDtorIsEmpty(*DtorFn, CalledFunctions))
3026 cxxDtorIsEmpty(const Function &Fn, SmallPtrSet<const Function *, 8> &CalledFunctions) argument

Completed in 145 milliseconds