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

1 2 3

  /external/v8/src/compiler/
js-inlining.h 48 Reduction InlineCall(Node* call, Node* new_target, Node* context,
js-inlining.cc 52 Node* new_target() { function in class:v8::internal::compiler::JSCallAccessor
135 Reduction JSInliner::InlineCall(Node* call, Node* new_target, Node* context,
166 Replace(use, new_target);
437 Node* new_target = jsgraph_->UndefinedConstant(); local
449 jsgraph_->javascript()->Create(), call.target(), call.new_target(),
471 new_target = call.new_target(); // Retrieve new target value input.
515 return InlineCall(node, new_target, context, frame_state, start, end);
interpreter-assembler.h 116 // |first_arg|. The |new_target| is the same as the
119 Node* CallConstruct(Node* new_target, Node* constructor, Node* first_arg,
js-call-reducer.cc 386 Node* new_target = NodeProperties::GetValueInput(node, arity + 1); local
430 NodeProperties::ReplaceValueInput(node, new_target, 1);
492 NodeProperties::ReplaceValueInput(node, new_target, 1);
519 if (target == new_target) {
js-generic-lowering.cc 476 Node* new_target = node->InputAt(1); local
487 node->InsertInput(zone(), 1 + arity, new_target); local
569 Node* new_target = node->InputAt(arg_count + 1); local
573 node->InsertInput(zone(), 2, new_target); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Tkdnd.py 155 new_target = None
162 new_target = attr(source, event)
163 if new_target:
167 if old_target is new_target:
174 if new_target:
175 new_target.dnd_enter(source, event)
176 self.target = new_target
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tkdnd.py 155 new_target = None
162 new_target = attr(source, event)
163 if new_target:
167 if old_target is new_target:
174 if new_target:
175 new_target.dnd_enter(source, event)
176 self.target = new_target
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkdnd.py 155 new_target = None
162 new_target = attr(source, event)
163 if new_target:
167 if old_target is new_target:
174 if new_target:
175 new_target.dnd_enter(source, event)
176 self.target = new_target
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkdnd.py 155 new_target = None
162 new_target = attr(source, event)
163 if new_target:
167 if old_target is new_target:
174 if new_target:
175 new_target.dnd_enter(source, event)
176 self.target = new_target
  /external/v8/test/mjsunit/harmony/
proxies-construct.js 76 construct(target, args, new_target) {
79 seen_new_target = new_target;
80 return Reflect.construct(target, args, new_target);
102 construct(target, args, new_target) {
121 'Array, { construct(target, args, new_target) { return args }} )');
136 '({ construct(target, args, new_target) {return args} })');
  /external/speex/libspeex/
ltp.c 363 spx_word16_t *new_target,
392 new_target[j] = target[j];
414 new_target[j] = SHR16(new_target[j],1);
440 corr[i]=inner_prod(x[i],new_target,nsf);
520 new_target[i] = SUB16(new_target[i], EXTRACT16(PSHR32(tmp,6)));
522 err = inner_prod(new_target, new_target, nsf);
554 VARDECL(spx_word16_t *new_target);
    [all...]
  /external/v8/src/runtime/
runtime-proxy.cc 81 CONVERT_ARG_HANDLE_CHECKED(Object, new_target, args.length() - 1);
112 isolate, result, Execution::New(isolate, target, new_target,
129 Handle<Object> trap_args[] = {target, arg_array, new_target};
runtime-array.cc 239 Handle<JSReceiver> new_target,
250 DCHECK(new_target->IsConstructor());
278 JSFunction::GetDerivedMap(isolate, constructor, new_target));
332 CONVERT_ARG_HANDLE_CHECKED(JSReceiver, new_target, argc + 1);
338 return ArrayConstructorCommon(isolate, constructor, new_target, site, &argv);
  /external/v8/src/
execution.cc 59 Handle<Object> new_target) {
74 typedef Object* (*JSEntryFunction)(Object* new_target, Object* target,
90 Object* orig_func = *new_target;
177 Handle<Object> new_target, int argc,
180 isolate->factory()->undefined_value(), argc, argv, new_target);
execution.h 37 Handle<Object> new_target,
objects-debug.cc 1321 Code* new_target = local
    [all...]
  /external/v8/src/arm64/
builtins-arm64.cc 443 Register new_target = x3; local
460 __ JumpIfNotObjectType(new_target, x10, x11, JS_FUNCTION_TYPE,
466 FieldMemOperand(new_target,
558 // Push the constructor, new_target and the object to the stack,
560 __ Push(constructor, new_target, new_obj, init_map);
562 __ Pop(new_obj, new_target, constructor);
581 // Push the constructor and new_target twice, second pair as arguments
583 __ Push(constructor, new_target, constructor, new_target);
586 __ Pop(new_target, constructor)
775 Register new_target = x0; local
1693 Register new_target = x3; local
1825 Register new_target = x3; local
    [all...]
  /external/v8/test/mjsunit/es6/
new-target.js 397 var new_target = super();
398 this.new_target = new_target;
401 assertEquals(A, new A().new_target);
  /frameworks/compile/libbcc/lib/Core/
Compiler.cpp 115 llvm::TargetMachine *new_target = local
124 if (new_target == nullptr) {
131 mTarget = new_target;
  /external/v8/src/wasm/
wasm-module.cc 129 Handle<Code> new_target = function_code_[index];
130 if (target != *new_target) {
132 it.rinfo()->set_target_address(new_target->instruction_start(),
  /external/v8/src/ast/
ast-value-factory.h 261 F(new_target, ".new.target") \
  /external/v8/src/arm/
macro-assembler-arm.cc     [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc     [all...]
macro-assembler-ia32.h 309 void InvokeFunctionCode(Register function, Register new_target,
314 void FloodFunctionIfStepping(Register fun, Register new_target,
320 void InvokeFunction(Register function, Register new_target,
    [all...]
  /external/v8/src/x87/
macro-assembler-x87.cc     [all...]

Completed in 506 milliseconds

1 2 3