/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/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/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/chromium_org/v8/tools/gcmole/ |
gcmole.cc | 166 CalleesSet* callees = callgraph_[name]; local 168 if (callees == NULL) { 169 callgraph_[name] = callees = new CalleesSet(); 172 scopes_.push(callees); 189 CalleesSet* callees = i->second; local 190 for (CalleesSet::const_iterator j = callees->begin(), e = callees->end(); [all...] |
gcmole.lua | 314 cfg:extend { plugin = "dump-callees" },
|
/external/chromium_org/v8/test/webkit/ |
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/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.)
|
profile.js | 330 * Calculates a flat profile of callees starting from a node with
|
/external/chromium_org/v8/src/ |
d8.js | [all...] |