/external/chromium_org/third_party/angle/src/compiler/translator/ |
DetectCallDepth.cpp | 24 for (size_t i = 0; i < callees.size(); ++i) { 25 if (callees[i] == callee) 28 callees.push_back(callee); 38 for (size_t i = 0; i < callees.size(); ++i) { 39 switch (callees[i]->visit) { 49 int callDepth = callees[i]->detectCallDepth(detectCallDepth, depth + 1); 52 detectCallDepth->getInfoSink().info << "<-" << callees[i]->getName();
|
DetectCallDepth.h | 58 TVector<FunctionNode*> callees; member in class:DetectCallDepth::FunctionNode
|
/external/oprofile/libpp/ |
callgraph_container.cpp | 152 // caller but different callees, and due to the 295 data.callees[*callee] += arc_count; 313 sym.callees.push_back(self); 316 sort(sym.callees.begin(), sym.callees.end(), compare_arc_count_reverse); 330 cit = sym.callees.begin(); 331 cend = sym.callees.end(); 338 sym.callees.erase(cit, sym.callees.end()); 371 cend = data.callees.end() [all...] |
callgraph_container.h | 79 /// callees of this symbol 80 children callees; member in struct:arc_recorder::cg_data 84 * Sort and threshold callers and callees.
|
symbol.h | 116 children callees; member in class:cg_symbol 117 /// total count of callees
|
format_output.cpp | 537 cend = sym->callees.end(); 539 for (cit = sym->callees.begin(); cit != cend; ++cit) { 769 /* make sure callers/callees are included in SYMBOL_TABLE */ 771 output_cg_children(out, cg_symb->callees, abfd); 978 if ((symname == selfname) && (tag == CALLEES)) { 1038 out << open_element(CALLEES); 1040 output_symbol_core(out, cg_symb->callees, selfname, qname, lo, hi, is_module, CALLEES); 1042 out << close_element(CALLEES);
|
/external/oprofile/libop/ |
op_xml_out.h | 35 CALLERS, CALLEES,
|
op_xml_out.c | 49 "callees",
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
ir_function_detect_recursion.cpp | 34 * repeatedly reduced by removing any function that either has no callees 165 exec_list callees; member in class:function 227 this->current->callees.push_tail(node); 268 if (f->callers.is_empty() || f->callees.is_empty()) { 271 destroy_links(& n->func->callees, f); 274 while (!f->callees.is_empty()) { 275 struct call_node *n = (struct call_node *) f->callees.pop_head();
|
/external/mesa3d/src/glsl/ |
ir_function_detect_recursion.cpp | 34 * repeatedly reduced by removing any function that either has no callees 165 exec_list callees; member in class:function 227 this->current->callees.push_tail(node); 268 if (f->callers.is_empty() || f->callees.is_empty()) { 271 destroy_links(& n->func->callees, f); 274 while (!f->callees.is_empty()) { 275 struct call_node *n = (struct call_node *) f->callees.pop_head();
|
/external/chromium_org/v8/test/webkit/ |
strict-callback-this-expected.txt | 24 This tests that a call to array/string prototype methods pass the correct this value (undefined) to strict callees.
|
strict-callback-this.js | 25 "This tests that a call to array/string prototype methods pass the correct this value (undefined) to strict callees."
|
/external/llvm/include/llvm/Analysis/ |
LazyCallGraph.h | 20 /// across the functions of a module in ways that ensure all callees are 93 /// which could potentially change the set of potential callees. The 158 /// callees, de-duplicate and provide fast testing of whether a function is 172 mutable NodeVectorT Callees; 175 /// \brief Basic constructor implements the scanning of F into Callees and 196 return iterator(*G, Callees.begin(), Callees.end()); 198 iterator end() const { return iterator(*G, Callees.end(), Callees.end()); }
|
/external/llvm/lib/Analysis/ |
LazyCallGraph.cpp | 25 SmallVectorImpl<PointerUnion<Function *, LazyCallGraph::Node *>> &Callees, 42 CalleeIndexMap.insert(std::make_pair(F, Callees.size())).second) { 45 Callees.push_back(F); 63 // Find all the potential callees in this function. First walk the 75 findCallees(Worklist, Visited, Callees, CalleeIndexMap); 82 CalleeIndexMap.insert(std::make_pair(&Callee, Callees.size())); 83 Callees.push_back(&Callee); 87 CalleeIndexMap.insert(std::make_pair(&CalleeN.getFunction(), Callees.size())); 88 Callees.push_back(&CalleeN); 96 Callees[IndexMapI->second] = nullptr [all...] |
/external/chromium_org/v8/tools/ |
profile_view.js | 92 * profile they can be either callees or callers.) 154 * profile they can be either callees or callers.)
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/Documentation/ |
perf-top.txt | 150 --ignore-callees=<regex>:: 151 Ignore callees of the function(s) matching the given regex.
|
perf-report.txt | 142 --ignore-callees=<regex>:: 143 Ignore callees of the function(s) matching the given regex.
|
/frameworks/opt/net/ims/src/java/com/android/ims/ |
ImsManager.java | 399 public ImsCall makeCall(int serviceId, ImsCallProfile profile, String[] callees, 403 + ", profile=" + profile + ", callees=" + callees); 413 if ((callees != null) && (callees.length == 1)) { 414 call.start(session, callees[0]); 416 call.start(session, callees);
|
/external/chromium_org/v8/tools/gcmole/ |
gcmole.cc | 167 CalleesSet* callees = callgraph_[name]; local 169 if (callees == NULL) { 170 callgraph_[name] = callees = new CalleesSet(); 173 scopes_.push(callees); 190 CalleesSet* callees = i->second; local 191 for (CalleesSet::const_iterator j = callees->begin(), e = callees->end(); [all...] |
/external/llvm/lib/Transforms/IPO/ |
InlineSimple.cpp | 10 // This file implements bottom-up inlining of functions into callees.
|
PruneEH.cpp | 78 // Next, check to see if any callees might throw or if there are any external 171 // SimplifyFunction - Given information about callees, simplify the specified
|
/external/clang/include/clang/Analysis/ |
CallGraph.h | 80 /// externally are represented as callees of the node. 150 /// Iterators through all the callees/children of the node.
|
/external/chromium_org/third_party/tcmalloc/vendor/doc/ |
cpuprofile.html | 160 <li> Number of profiling samples in this function and its callees 161 <li> Percentage of profiling samples in this function and its callees 211 the time spent in any callees. If the cumulative time is the same as 217 executing <code>test_main_thread()</code> and its callees such as
|
heapprofile.html | 206 it and its callees are responsible for 729.9 MB. The 244 and all of its callees.
|
/external/oprofile/doc/ |
opreport.xsd | 154 <xs:element name="callees"> 205 <xs:element minOccurs="0" maxOccurs="1" ref="callees"/>
|