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

1 2 3

  /external/clang/test/Analysis/diagnostics/
undef-value-callee.h 2 void callee() { function
  /external/clang/test/CodeGen/
arm64-be-hfa-vararg.c 6 double callee(int a, ...) { function
  /external/chromium_org/v8/test/webkit/
apply-varargs.js 29 function callee(a1, a2, a3, a4, a5, a6, a7, a8) function
65 var allArgs = [0, "String", callee, true, null, 2.5, [1, 2, 3], {'a': 1, 'b' : 2}];
78 var result = callee.apply(baseObj, varArgs);
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_function_can_inline.cpp 62 const ir_function_signature *callee = call->callee; local
63 if (!callee->is_defined)
66 v.run((exec_list *) &callee->body);
71 ir_instruction *last = (ir_instruction *)callee->body.get_tail();
ir_validate.cpp 571 ir_function_signature *const callee = ir->callee; local
573 if (callee->ir_type != ir_type_function_signature) {
579 if (ir->return_deref->type != callee->return_type) {
580 printf("callee type %s does not match return storage type %s\n",
581 callee->return_type->name, ir->return_deref->type->name);
584 } else if (callee->return_type != glsl_type::void_type) {
585 printf("ir_call has non-void callee but no return storage\n");
589 const exec_node *formal_param_node = callee->parameters.head;
623 printf("callee:\n")
    [all...]
link_functions.cpp 66 * shader callee will point to an ir_function_signature in the original
71 const ir_function_signature *const callee = ir->callee; local
72 assert(callee != NULL);
73 const char *const name = callee->function_name();
79 find_matching_signature(name, &callee->parameters, &linked, 1,
82 ir->callee = sig;
116 f->exact_matching_signature(&callee->parameters);
120 linked_sig = new(linked) ir_function_signature(callee->return_type);
125 * ir_call from linked then linked_sig and callee will b
    [all...]
ir_reader.cpp 652 ir_function_signature *callee = f->matching_signature(&parameters); local
653 if (callee == NULL) {
659 if (callee->return_type == glsl_type::void_type && return_deref) {
662 } else if (callee->return_type != glsl_type::void_type && !return_deref) {
667 return new(mem_ctx) ir_call(callee, return_deref, &parameters);
ir.h 1129 ir_call(ir_function_signature *callee,
1132 : return_deref(return_deref), callee(callee)
1135 assert(callee->return_type != NULL);
1137 this->use_builtin = callee->is_builtin;
1187 ir_function_signature *callee; member in class:ir_call
    [all...]
  /external/mesa3d/src/glsl/
ir_function_can_inline.cpp 62 const ir_function_signature *callee = call->callee; local
63 if (!callee->is_defined)
66 v.run((exec_list *) &callee->body);
71 ir_instruction *last = (ir_instruction *)callee->body.get_tail();
ir_validate.cpp 571 ir_function_signature *const callee = ir->callee; local
573 if (callee->ir_type != ir_type_function_signature) {
579 if (ir->return_deref->type != callee->return_type) {
580 printf("callee type %s does not match return storage type %s\n",
581 callee->return_type->name, ir->return_deref->type->name);
584 } else if (callee->return_type != glsl_type::void_type) {
585 printf("ir_call has non-void callee but no return storage\n");
589 const exec_node *formal_param_node = callee->parameters.head;
623 printf("callee:\n")
    [all...]
link_functions.cpp 66 * shader callee will point to an ir_function_signature in the original
71 const ir_function_signature *const callee = ir->callee; local
72 assert(callee != NULL);
73 const char *const name = callee->function_name();
79 find_matching_signature(name, &callee->parameters, &linked, 1,
82 ir->callee = sig;
116 f->exact_matching_signature(&callee->parameters);
120 linked_sig = new(linked) ir_function_signature(callee->return_type);
125 * ir_call from linked then linked_sig and callee will b
    [all...]
ir_reader.cpp 652 ir_function_signature *callee = f->matching_signature(&parameters); local
653 if (callee == NULL) {
659 if (callee->return_type == glsl_type::void_type && return_deref) {
662 } else if (callee->return_type != glsl_type::void_type && !return_deref) {
667 return new(mem_ctx) ir_call(callee, return_deref, &parameters);
  /external/chromium_org/v8/test/mjsunit/es6/
promises.js 46 var poisoned = {caller: 0, callee: 0, arguments: 0}
  /external/llvm/tools/llvm-c-test/
module.c 78 LLVMValueRef callee = local
80 printf(" calls: %s\n", LLVMGetValueName(callee));
  /art/compiler/sea_ir/code_gen/
code_gen.cc 197 // TODO: Build callee LLVM function name.
201 llvm::Function *callee = llvm_data_->module_.getFunction(function_name); local
203 DCHECK(NULL != callee);
214 llvm::Value* return_value = llvm_data_->builder_.CreateCall(callee,
  /art/runtime/
stack.cc 562 // Skip runtime save all callee frames which are used to deliver exceptions.
564 mirror::ArtMethod* callee = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs); local
565 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
  /external/chromium_org/third_party/closure_compiler/runner/src/com/google/javascript/jscomp/
ChromePass.java 98 Node callee = node.getFirstChild(); local
99 if (callee.matchesQualifiedName(CR_DEFINE)) {
102 } else if (callee.matchesQualifiedName(CR_EXPORT_PATH)) {
105 } else if (callee.matchesQualifiedName(OBJECT_DEFINE_PROPERTY) ||
106 callee.matchesQualifiedName(CR_DEFINE_PROPERTY)) {
109 } else if (callee.matchesQualifiedName(CR_MAKE_PUBLIC)) {
118 Node callee = call.getFirstChild(); local
120 if (callee.matchesQualifiedName(CR_DEFINE_PROPERTY) && !target.endsWith(".prototype")) {
129 if (callee.matchesQualifiedName(CR_DEFINE_PROPERTY)) {
  /external/chromium_org/v8/src/compiler/
instruction-selector.cc 283 // The first argument is always the callee code.
284 Node* callee = call->InputAt(0); local
288 (call_code_immediate && callee->opcode() == IrOpcode::kHeapConstant)
289 ? g.UseImmediate(callee)
290 : g.UseRegister(callee));
295 (callee->opcode() == IrOpcode::kInt32Constant ||
296 callee->opcode() == IrOpcode::kInt64Constant))
297 ? g.UseImmediate(callee)
298 : g.UseRegister(callee));
302 g.UseLocation(callee, buffer->descriptor->GetInputLocation(0)
    [all...]
  /external/chromium_org/v8/src/ic/arm/
handler-compiler-arm.cc 236 Register callee = r0; local
262 // Put callee in place.
263 __ Move(callee, function);
  /external/chromium_org/v8/src/ic/arm64/
handler-compiler-arm64.cc 156 Register callee = x0; local
182 // Put callee in place.
183 __ LoadObject(callee, function);
  /external/chromium_org/v8/src/ic/ia32/
handler-compiler-ia32.cc 143 Register callee = eax; local
170 // Put callee in place.
171 __ LoadHeapObject(callee, function);
  /external/chromium_org/v8/src/ic/mips/
handler-compiler-mips.cc 232 Register callee = a0; local
258 // Put callee in place.
259 __ li(callee, function);
  /external/chromium_org/v8/src/ic/mips64/
handler-compiler-mips64.cc 232 Register callee = a0; local
258 // Put callee in place.
259 __ li(callee, function);
  /external/chromium_org/v8/src/ic/x64/
handler-compiler-x64.cc 137 Register callee = rax; local
164 // Put callee in place.
165 __ Move(callee, function);
  /external/chromium_org/v8/src/ic/x87/
handler-compiler-x87.cc 143 Register callee = eax; local
170 // Put callee in place.
171 __ LoadHeapObject(callee, function);

Completed in 1295 milliseconds

1 2 3