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

1 2 3 4 5 6 7

  /external/mesa3d/src/glsl/
ir_function_can_inline.cpp 62 const ir_function_signature *callee = call->get_callee(); local
63 if (!callee->is_defined)
66 v.run((exec_list *) &callee->body);
71 ir_instruction *last = (ir_instruction *)callee->body.get_tail();
link_functions.cpp 69 * shader callee will point to an ir_function_signature in the original
74 const ir_function_signature *const callee = ir->get_callee(); local
75 assert(callee != NULL);
76 const char *const name = callee->function_name();
82 find_matching_signature(name, &callee->parameters, &linked, 1);
110 f->exact_matching_signature(&callee->parameters);
112 linked_sig = new(linked) ir_function_signature(callee->return_type);
117 * ir_call from linked then linked_sig and callee will be
ir_constant_expression.cpp 965 if (!this->callee->is_builtin)
994 const char *callee = this->callee_name();
995 if (strcmp(callee, "abs") == 0) {
997 } else if (strcmp(callee, "all") == 0) {
1004 } else if (strcmp(callee, "any") == 0) {
1011 } else if (strcmp(callee, "acos") == 0) {
1015 } else if (strcmp(callee, "acosh") == 0) {
1019 } else if (strcmp(callee, "asin") == 0) {
1023 } else if (strcmp(callee, "asinh") == 0) {
1027 } else if (strcmp(callee, "atan") == 0)
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
AdjustedReturnValueChecker.cpp 53 const MemRegion *callee = state->getSVal(CE->getCallee()).getAsRegion(); local
54 if (!callee)
59 if (const FunctionTextRegion *FT = dyn_cast<FunctionTextRegion>(callee)) {
63 else if (const BlockDataRegion *BD = dyn_cast<BlockDataRegion>(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/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());
JSInt16ArrayCustom.cpp 53 JSInt16ArrayConstructor* jsConstructor = static_cast<JSInt16ArrayConstructor*>(exec->callee());
JSInt32ArrayCustom.cpp 53 JSInt32ArrayConstructor* jsConstructor = static_cast<JSInt32ArrayConstructor*>(exec->callee());
  /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/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/base/voip/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 1938 milliseconds

1 2 3 4 5 6 7