HomeSort by relevance Sort by last modified time
    Searched full:this_value (Results 1 - 17 of 17) sorted by null

  /external/v8/test/mjsunit/harmony/
proxies-bind.js 28 var this_value = Symbol(); variable
31 result = Function.prototype.bind.call(proxy, this_value, "foo");
34 assertEquals(this_value, result());
41 assertEquals(["apply", target, this_value, ["foo"]], log[4]);
49 result = Function.prototype.bind.call(proxy, this_value, "foo");
52 assertEquals(this_value, result());
59 assertEquals(["apply", target, this_value, ["foo"]], log[4]);
70 result = Function.prototype.bind.call(proxy, this_value, "foo");
72 assertEquals(this_value, result());
83 result = Function.prototype.bind.call(proxy, this_value, "foo")
    [all...]
  /external/v8/test/mjsunit/es6/
debug-evaluate-arrow-function-receiver.js 20 var this_value = frame.evaluate("this").value();
22 print(expected, this_value, frame.sourceLineText());
23 assertEquals(String(expected), String(this_value));
  /external/v8/src/compiler/
js-native-context-specialization.cc 125 Node* this_value = value; local
204 this_value = jsgraph()->UndefinedConstant();
207 this_value = jsgraph()->Constant(access_info.constant());
210 simplified()->ReferenceEqual(Type::Tagged()), value, this_value);
270 this_value = this_effect =
277 graph()->NewNode(simplified()->ObjectIsNumber(), this_value);
283 this_value = graph()->NewNode(common()->Guard(Type::Number()),
284 this_value, this_control);
301 this_box, this_value, this_effect, this_control);
302 this_value = this_box
544 Node* this_value = value; local
    [all...]
  /art/test/461-get-reference-vreg/
get_reference_vreg_jni.cc 30 TestVisitor(Thread* thread, Context* context, mirror::Object* this_value)
33 this_value_(this_value),
  /art/test/454-get-vreg/
get_vreg_jni.cc 31 TestVisitor(Thread* thread, Context* context, mirror::Object* this_value)
34 this_value_(this_value),
  /external/v8/src/
bignum.cc 427 uint64_t this_value = base;
431 while (mask != 0 && this_value <= max_32bits) {
432 this_value = this_value * this_value;
433 // Verify that there is enough space in this_value to perform the
438 bool high_bits_zero = (this_value & base_bits_mask) == 0;
440 this_value *= base;
447 AssignUInt64(this_value);
d8.cc 1803 Local<Value> this_value = External::New(isolate, this); local
    [all...]
objects.cc 1535 double this_value = Number(); local
1577 double this_value = Number(); local
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
cgen-opc.c 382 bfd_vma this_value;
385 this_value = bfd_get_bits (& buf[bit_index / 8], insn_chunk_bitsize, big_p);
386 value = (value << insn_chunk_bitsize) | this_value;
379 bfd_vma this_value; local
  /cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
layered_filter_fast_f32.rs 270 float4 this_value = {weight * sharp->red, weight * sharp->green,
272 *integral = prev_integral_value + this_value;
291 float4 this_value = {weight * sharp->red, weight * sharp->green,
293 *integral = prev_integral_value + this_value;
layered_filter_fast_d1new.rs 358 float4 this_value = {weight * sharp_RGBA.r, weight * sharp_RGBA.g,
360 prev_integral_value = prev_integral_value + this_value;
389 float4 this_value = {weight * sharp_RGBA.r, weight * sharp_RGBA.g,
391 prev_integral_value = prev_integral_value + this_value;
    [all...]
  /frameworks/rs/java/tests/Refocus/src/com/android/rs/test/
layered_filter_fast_f32.rs 270 float4 this_value = {weight * sharp->red, weight * sharp->green,
272 *integral = prev_integral_value + this_value;
291 float4 this_value = {weight * sharp->red, weight * sharp->green,
293 *integral = prev_integral_value + this_value;
layered_filter_fast_d1new.rs 356 float4 this_value = {weight * sharp_RGBA.r, weight * sharp_RGBA.g,
358 prev_integral_value = prev_integral_value + this_value;
387 float4 this_value = {weight * sharp_RGBA.r, weight * sharp_RGBA.g,
389 prev_integral_value = prev_integral_value + this_value;
    [all...]
  /system/tools/aidl/
generate_java_binder.cpp 80 new MethodCall(THIS_VALUE, "attachInterface", 2, THIS_VALUE,
94 asBinder->statements->Add(new ReturnStatement(THIS_VALUE));
305 MethodCall* realCall = new MethodCall(THIS_VALUE, method.GetName());
type_java.h 487 extern Expression* THIS_VALUE;
type_java.cpp 36 Expression* THIS_VALUE;
    [all...]
  /external/autotest/frontend/afe/
rpc_utils.py 251 this_value = getattr(obj, field)
252 if this_value != value:
    [all...]

Completed in 1241 milliseconds