HomeSort by relevance Sort by last modified time
    Searched refs:callee (Results 1 - 25 of 177) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/test/Analysis/diagnostics/
undef-value-callee.h 2 void callee() { function
undef-value-caller.c 4 #include "undef-value-callee.h"
10 callee();
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerCallFrame.cpp 44 if (!m_callFrame->callee())
47 JSObject* function = m_callFrame->callee();
58 JSObject* function = m_callFrame->callee();
67 if (m_callFrame->callee())
  /external/webkit/Source/JavaScriptCore/jit/
JITCall32_64.cpp 51 // regT0 holds callee, regT1 holds argCount
54 emitPutCellToCallFrameHeader(regT0, RegisterFile::Callee);
66 int callee = instruction[1].u.operand; local
70 emitLoad(callee, regT1, regT0);
74 emitJumpSlowCaseIfNotJSCell(callee, regT1);
93 int callee = instruction[1].u.operand; local
95 linkSlowCaseIfNotJSCell(iter, callee);
192 int callee = instruction[1].u.operand; local
199 stubCall.addArgument(callee);
206 emitLoad(callee, regT1, regT0)
227 int callee = instruction[1].u.operand; local
249 int callee = instruction[1].u.operand; local
304 int callee = instruction[1].u.operand; local
    [all...]
  /external/webkit/Source/WebCore/fileapi/
FileThreadTask.h 170 T* const callee,
175 T* const callee,
179 callee,
185 T* const callee,
190 callee,
197 T* const callee,
203 callee,
211 T* const callee,
218 callee,
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCMainThreadTask.h 163 T* const callee,
168 T* const callee,
172 callee,
178 T* const callee,
183 callee,
190 T* const callee,
196 callee,
204 T* const callee,
211 callee,
CCThreadTask.h 203 T* const callee,
208 T* const callee,
212 callee,
218 T* const callee,
223 callee,
230 T* const callee,
236 callee,
244 T* const callee,
251 callee,
260 T* const callee,
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSArrayBufferCustom.cpp 39 JSArrayBufferConstructor* jsConstructor = static_cast<JSArrayBufferConstructor*>(exec->callee());
JSWebKitCSSMatrixCustom.cpp 37 JSWebKitCSSMatrixConstructor* jsConstructor = static_cast<JSWebKitCSSMatrixConstructor*>(exec->callee());
JSWebKitPointCustom.cpp 37 JSWebKitPointConstructor* jsConstructor = static_cast<JSWebKitPointConstructor*>(exec->callee());
JSEventSourceCustom.cpp 56 JSEventSourceConstructor* jsConstructor = static_cast<JSEventSourceConstructor*>(exec->callee());
JSFloat32ArrayCustom.cpp 53 JSFloat32ArrayConstructor* jsConstructor = static_cast<JSFloat32ArrayConstructor*>(exec->callee());
JSFloat64ArrayCustom.cpp 53 JSFloat64ArrayConstructor* jsConstructor = static_cast<JSFloat64ArrayConstructor*>(exec->callee());
JSInt16ArrayCustom.cpp 53 JSInt16ArrayConstructor* jsConstructor = static_cast<JSInt16ArrayConstructor*>(exec->callee());
JSInt32ArrayCustom.cpp 53 JSInt32ArrayConstructor* jsConstructor = static_cast<JSInt32ArrayConstructor*>(exec->callee());
  /bionic/libc/arch-x86/bionic/
syscall.S 5 * %ebx: arg0 to system call - callee save
8 * %esi: arg3 - callee save
9 * %edi: arg4 - callee save
10 * %ebp: arg5 - callee save
17 # Push the callee save registers.
46 # Restore the callee save registers.
  /external/v8/src/
apiutils.h 46 internal::JSFunction* callee,
49 implicit_args[v8::Arguments::kCalleeIndex] = callee;
  /external/webkit/Source/JavaScriptCore/runtime/
ErrorConstructor.cpp 45 Structure* errorStructure = asInternalFunction(exec->callee())->globalObject()->errorStructure();
58 Structure* errorStructure = asInternalFunction(exec->callee())->globalObject()->errorStructure();
Arguments.h 52 WriteBarrier<JSFunction> callee; member in struct:JSC::ArgumentsData
131 function = asFunction(callFrame->callee());
151 JSFunction* callee; local
155 getArgumentsData(callFrame, callee, firstParameterIndex, argv, numArguments);
157 d->numParameters = callee->jsExecutable()->parameterCount();
178 d->callee.set(callFrame->globalData(), this, callee);
192 ASSERT(!asFunction(callFrame->callee())->jsExecutable()->parameterCount());
211 d->callee.set(callFrame->globalData(), this, asFunction(callFrame->callee()));
    [all...]
  /frameworks/opt/net/voip/src/java/android/net/sip/
ISipSession.aidl 110 * @param callee the SIP profile to make the call to
116 void makeCall(in SipProfile callee, String sessionDescription, int timeout);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml 34 | Ast.Call (callee, args) ->
36 let callee =
37 match lookup_function callee the_module with
38 | Some callee -> callee
41 let params = params callee in
47 build_call callee args "calltmp" builder
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
codegen.ml 34 | Ast.Call (callee, args) ->
36 let callee =
37 match lookup_function callee the_module with
38 | Some callee -> callee
41 let params = params callee in
47 build_call callee args "calltmp" builder
  /external/webkit/Source/JavaScriptCore/interpreter/
CallFrame.h 41 JSObject* callee() const { return this[RegisterFile::Callee].function(); } function in class:JSC::ExecState
105 CallFrame* callerFrame, int argc, JSObject* callee)
115 setCallee(callee);
143 void setCallee(JSObject* callee) { static_cast<Register*>(this)[RegisterFile::Callee] = Register::withCallee(callee); }
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml 22 let callee = "unary" ^ (String.make 1 op) in
23 let callee =
24 match lookup_function callee the_module with
25 | Some callee -> callee
28 build_call callee [|operand|] "unop" builder
44 let callee = "binary" ^ (String.make 1 op) in
45 let callee =
46 match lookup_function callee the_module with
47 | Some callee -> calle
    [all...]
  /external/libffi/testsuite/libffi.call/
problem1.c 16 my_ffi_struct callee(struct my_ffi_struct a1, struct my_ffi_struct a2) function
39 *(my_ffi_struct *)resp = callee(a1, a2);
85 ffi_call(&cif, FFI_FN(callee), &res, args);

Completed in 496 milliseconds

1 2 3 4 5 6 7 8