OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CalledFunctions
(Results
1 - 4
of
4
) sorted by null
/external/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/Analysis/IPA/
CallGraph.cpp
283
for (CalledFunctionsVector::iterator I =
CalledFunctions
.begin(); ; ++I) {
284
assert(I !=
CalledFunctions
.end() && "Cannot find callsite to remove!");
287
*I =
CalledFunctions
.back();
288
CalledFunctions
.pop_back();
298
for (unsigned i = 0, e =
CalledFunctions
.size(); i != e; ++i)
299
if (
CalledFunctions
[i].second == Callee) {
301
CalledFunctions
[i] =
CalledFunctions
.back();
302
CalledFunctions
.pop_back();
310
for (CalledFunctionsVector::iterator I =
CalledFunctions
.begin(); ; ++I)
[
all
...]
/external/clang/include/clang/Index/
CallGraph.h
31
std::vector<CallRecord>
CalledFunctions
;
39
iterator begin() { return
CalledFunctions
.begin(); }
40
iterator end() { return
CalledFunctions
.end(); }
41
const_iterator begin() const { return
CalledFunctions
.begin(); }
42
const_iterator end() const { return
CalledFunctions
.end(); }
45
CalledFunctions
.push_back(std::make_pair(L, Node));
/external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp
[
all
...]
Completed in 64 milliseconds