OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CalledFunctions
(Results
1 - 5
of
5
) sorted by null
/external/clang/include/clang/Analysis/
CallGraph.h
142
SmallVector<CallRecord, 5>
CalledFunctions
;
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/
CallGraph.h
193
inline iterator begin() { return
CalledFunctions
.begin(); }
194
inline iterator end() { return
CalledFunctions
.end(); }
195
inline const_iterator begin() const { return
CalledFunctions
.begin(); }
196
inline const_iterator end() const { return
CalledFunctions
.end(); }
197
inline bool empty() const { return
CalledFunctions
.empty(); }
198
inline unsigned size() const { return (unsigned)
CalledFunctions
.size(); }
206
assert(i <
CalledFunctions
.size() && "Invalid index");
207
return
CalledFunctions
[i].second;
222
while (!
CalledFunctions
.empty()) {
223
CalledFunctions
.back().second->DropRef()
[
all
...]
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
CallGraph.h
182
std::vector<CallRecord>
CalledFunctions
;
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
[i].second
[
all
...]
/external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp
[
all
...]
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
GlobalOpt.cpp
[
all
...]
Completed in 131 milliseconds