HomeSort by relevance Sort by last modified time
    Searched refs:callee (Results 51 - 75 of 221) sorted by null

1 23 4 5 6 7 8 9

  /external/chromium_org/chrome_frame/test/
chrome_frame_test_utils.h 144 STDMETHOD_(DWORD, RetryRejectedCall)(HTASK callee,
150 STDMETHOD_(DWORD, MessagePending)(HTASK callee,
  /external/chromium_org/tools/cygprofile/
mergetraces.py 103 list of calls as tuples (sec, msec, pid:tid, callee)
110 callee = int (fields[3], 16)
111 # print ("callee: " + hex (callee) + " start: " + hex (startAddr) + " end: "
113 if (callee >= startAddr and callee < endAddr
114 and (not callee in call_addresses)):
115 converted_calls.append((secs, msecs, fields[2], (callee - startAddr)))
116 call_addresses.append(callee)
  /external/chromium_org/v8/test/webkit/fast/js/
Object-getOwnPropertyNames.js 58 "argumentsObject()": "['callee', 'length']",
59 "argumentsObject(1)": "['0', 'callee', 'length']",
60 "argumentsObject(1,2,3)": "['0', '1', '2', 'callee', 'length']",
61 "(function(){arguments.__proto__=[1,2,3];return arguments;})()": "['callee', 'length']",
basic-strict-mode.js 99 shouldThrow("(function (){'use strict'; arguments.callee; })()");
105 shouldThrow("(function (arg){'use strict'; arguments.callee; })()");
199 shouldBeUndefined("(function f(arg){'use strict'; return Object.getOwnPropertyDescriptor(arguments, 'callee').value; })()");
202 shouldBeTrue("(function f(arg){'use strict'; var descriptor = Object.getOwnPropertyDescriptor(arguments, 'callee'); return descriptor.get === descriptor.set; })()");
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 105 std::string Callee;
108 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
109 : Callee(callee), Args(args) {}
  /external/llvm/lib/Target/X86/
X86CompilationCallback_Win64.asm 40 ; JIT callee
  /frameworks/opt/net/voip/src/java/android/net/sip/
SipSession.java 393 * @param callee the SIP profile to make the call to
400 public void makeCall(SipProfile callee, String sessionDescription,
403 mSession.makeCall(callee, sessionDescription, timeout);
  /art/runtime/
stack.cc 270 // a dex register limit. The 16 incorporates callee save spills and
316 // Skip runtime save all callee frames which are used to deliver exceptions.
318 mirror::ArtMethod* callee = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs); local
319 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_clone.cpp 181 return new(mem_ctx) ir_call(this->callee, new_return_ref, &new_parameters);
402 (ir_function_signature *) hash_table_find(this->ht, ir->callee);
404 ir->callee = sig;
ir_function_detect_recursion.cpp 30 * is part of a cycle, it will have a caller and it will have a callee (it
221 function *const target = this->get_function(call->callee);
223 /* Create a link from the caller to the callee.
229 /* Create a link from the callee to the caller.
opt_constant_variable.cpp 135 exec_list_iterator sig_iter = ir->callee->parameters.iterator();
  /external/mesa3d/src/glsl/
ir_clone.cpp 181 return new(mem_ctx) ir_call(this->callee, new_return_ref, &new_parameters);
402 (ir_function_signature *) hash_table_find(this->ht, ir->callee);
404 ir->callee = sig;
ir_function_detect_recursion.cpp 30 * is part of a cycle, it will have a caller and it will have a callee (it
221 function *const target = this->get_function(call->callee);
223 /* Create a link from the caller to the callee.
229 /* Create a link from the callee to the caller.
opt_constant_variable.cpp 135 exec_list_iterator sig_iter = ir->callee->parameters.iterator();
  /dalvik/vm/compiler/template/mips/
TEMPLATE_INVOKE_METHOD_CHAIN.S 4 * Thumb code through the link register to transfer control to the callee
67 RETURN # return to the callee-chaining cell
TEMPLATE_INVOKE_METHOD_NO_OPT.S 4 * runtime-resolved callee.
76 # Start executing the callee
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
mesadef.py 59 print '; callee is responsible for popping this data'
  /external/chromium_org/v8/test/mjsunit/
arguments.js 113 return arguments.callee(arguments[0] - 1) + arguments[0];
163 assertEquals("function", typeof a.callee);
  /external/mesa3d/src/mapi/glapi/gen/
mesadef.py 59 print '; callee is responsible for popping this data'
  /external/v8/test/mjsunit/
arguments.js 113 return arguments.callee(arguments[0] - 1) + arguments[0];
163 assertEquals("function", typeof a.callee);
  /external/chromium_org/v8/src/
arguments.h 307 internal::JSFunction* callee,
318 values[T::kCalleeIndex] = callee;
  /external/chromium_org/v8/test/mjsunit/compiler/
inline-context-slots.js 33 // Caller/callee without a local context.
  /external/chromium_org/v8/test/webkit/
dfg-inline-function-dot-caller.js 42 f=f.arguments.callee.caller;
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 118 std::string Callee;
121 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
122 : Callee(callee), Args(args) {}
384 Function *CalleeF = TheModule->getFunction(Callee);
  /external/v8/test/mjsunit/compiler/
inline-context-slots.js 33 // Caller/callee without a local context.

Completed in 734 milliseconds

1 23 4 5 6 7 8 9