HomeSort by relevance Sort by last modified time
    Searched refs:callees (Results 1 - 17 of 17) sorted by null

  /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);
  /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...]
gcmole.lua 312 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
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCallTracker.java 399 String[] callees = new String[] { conn.getAddress() }; local
405 callees, mImsCallListener);
777 String[] callees = new String[] { ussdString }; local
784 callees, mImsUssdListener);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cgraph.h 203 Each function decl has assigned cgraph_node listing callees and callers. */
207 struct cgraph_edge *callees; variable in typeref:struct:cgraph_edge
    [all...]
  /external/chromium_org/v8/src/
d8.js     [all...]

Completed in 1288 milliseconds