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

1 2 3 45 6 7 8 9

  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_constant_propagation.cpp 284 exec_list_iterator sig_param_iter = ir->callee->parameters.iterator();
opt_copy_propagation_elements.cpp 296 exec_list_iterator sig_param_iter = ir->callee->parameters.iterator();
  /external/chromium_org/v8/test/webkit/fast/js/
arguments.js 588 return arguments.callee;
602 return arguments.callee;
  /external/chromium_org/v8/tools/
ll_prof.py 138 def CalleeTick(self, callee):
141 self.callee_ticks[callee] += 1
844 for callee, ticks in code.callee_ticks.iteritems():
845 print "n%d -> n%d [label=\"%d\"];" % (code.id, callee.id, ticks)
    [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h     [all...]
  /external/mesa3d/src/glsl/
opt_constant_propagation.cpp 284 exec_list_iterator sig_param_iter = ir->callee->parameters.iterator();
opt_copy_propagation_elements.cpp 296 exec_list_iterator sig_param_iter = ir->callee->parameters.iterator();
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp 396 callExpr(allOf(callee(functionDecl(hasName("f"))),
399 callExpr(allOf(callee(functionDecl(hasName("f"))),
404 callExpr(allOf(callee(functionDecl(hasName("f"))),
410 callExpr(allOf(callee(functionDecl(hasName("f"))),
819 callExpr(callee(methodDecl(hasName("x")))).bind("x");
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.h     [all...]
  /external/v8/src/
ic.cc 473 void CallICBase::ReceiverToObjectIfRequired(Handle<Object> callee,
475 while (callee->IsJSFunctionProxy()) {
476 callee = Handle<Object>(JSFunctionProxy::cast(*callee)->call_trap());
479 if (callee->IsJSFunction()) {
480 Handle<JSFunction> function = Handle<JSFunction>::cast(callee);
557 // Make receiver an object if the callee requires it. Strict mode or builtin
789 // Make receiver an object if the callee requires it. Strict mode or builtin
    [all...]
  /dalvik/vm/compiler/codegen/x86/
CodegenInterface.cpp 407 * methods to speculatively setup a chain to the callee. The templates are
411 * 1) Chain is not setup because the callee is native. Reset the rechain
414 * 2) Chain is not setup because the callee has not been created yet. Reset
451 * Compilation not made yet for the callee. Reset the counter to a small
700 const Method *callee, int blockId, LowOpBlockLabel* labelList)
702 ALOGV("in handleInvokeSingletonChainingCell for method %s block %d callee %s NCG offset %x",
703 cUnit->method->name, blockId, callee->name, stream - streamMethodStart);
711 move_imm_to_reg(OpndSize_32, (int) (callee->insns), P_GPR_1, true);
714 //move_imm_to_reg(OpndSize_32, (int) (callee->insns), P_GPR_1, true); /* used when unchaining */
725 //assume rPC for callee->insns in %eb
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
jsunittest.js 47 replacement = arguments.callee.prepareReplacement(replacement);
717 return arguments.callee.call(this, element.parentNode);
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
jsunittest.js 47 replacement = arguments.callee.prepareReplacement(replacement);
717 return arguments.callee.call(this, element.parentNode);
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
Registry.cpp 190 REGISTER_OVERLOADED_2(callee);
  /external/chromium_org/v8/src/
typing.cc 445 Expression* callee = expr->expression(); local
446 Property* prop = callee->AsProperty();
  /external/chromium_org/v8/test/mjsunit/
function-bind.js 294 // the caller is strict and the callee isn't. A bound function is built-in,
strict-mode.js     [all...]
  /external/chromium_org/v8/test/webkit/
preventExtensions.js 142 shouldBeFalse('Object.getOwnPropertyDescriptor(args, "callee").writable')
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 154 std::string Callee;
157 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
158 : Callee(callee), Args(args) {}
693 Function *CalleeF = TheModule->getFunction(Callee);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 172 std::string Callee;
175 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
176 : Callee(callee), Args(args) {}
718 Function *CalleeF = TheModule->getFunction(Callee);
721 sprintf(error_str, "Unknown function referenced %s", Callee.c_str());
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 155 std::string Callee;
158 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
159 : Callee(callee), Args(args) {}
943 Function *CalleeF = TheHelper->getFunction(Callee);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 157 std::string Callee;
160 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
161 : Callee(callee), Args(args) {}
700 Function *CalleeF = TheModule->getFunction(Callee);
703 sprintf(error_str, "Unknown function referenced %s", Callee.c_str());
    [all...]
toy.cpp 157 std::string Callee;
160 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
161 : Callee(callee), Args(args) {}
983 Function *CalleeF = TheHelper->getFunction(Callee);
    [all...]
  /external/v8/test/mjsunit/
function-bind.js 294 // the caller is strict and the callee isn't. A bound function is built-in,
strict-mode.js     [all...]

Completed in 4086 milliseconds

1 2 3 45 6 7 8 9