Home
last modified time | relevance | path

Searched refs:this_value (Results 1 – 7 of 7) sorted by relevance

/external/v8/test/mjsunit/harmony/
Dproxies-bind.js28 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/src/compiler/
Djs-native-context-specialization.cc125 Node* this_value = value; in ReduceNamedAccess() local
204 this_value = jsgraph()->UndefinedConstant(); in ReduceNamedAccess()
207 this_value = jsgraph()->Constant(access_info.constant()); in ReduceNamedAccess()
210 simplified()->ReferenceEqual(Type::Tagged()), value, this_value); in ReduceNamedAccess()
270 this_value = this_effect = in ReduceNamedAccess()
277 graph()->NewNode(simplified()->ObjectIsNumber(), this_value); in ReduceNamedAccess()
283 this_value = graph()->NewNode(common()->Guard(Type::Number()), in ReduceNamedAccess()
284 this_value, this_control); in ReduceNamedAccess()
301 this_box, this_value, this_effect, this_control); in ReduceNamedAccess()
302 this_value = this_box; in ReduceNamedAccess()
[all …]
/external/v8/test/mjsunit/es6/
Ddebug-evaluate-arrow-function-receiver.js20 var this_value = frame.evaluate("this").value();
22 print(expected, this_value, frame.sourceLineText());
23 assertEquals(String(expected), String(this_value));
/external/v8/src/
Dbignum.cc427 uint64_t this_value = base; in AssignPowerUInt16() local
431 while (mask != 0 && this_value <= max_32bits) { in AssignPowerUInt16()
432 this_value = this_value * this_value; in AssignPowerUInt16()
438 bool high_bits_zero = (this_value & base_bits_mask) == 0; in AssignPowerUInt16()
440 this_value *= base; in AssignPowerUInt16()
447 AssignUInt64(this_value); in AssignPowerUInt16()
Dd8.cc1803 Local<Value> this_value = External::New(isolate, this); in ExecuteInThread() local
1805 FunctionTemplate::New(isolate, PostMessageOut, this_value); in ExecuteInThread()
1881 Local<External> this_value = Local<External>::Cast(args.Data()); in PostMessageOut() local
1882 Worker* worker = static_cast<Worker*>(this_value->Value()); in PostMessageOut()
Dobjects.cc1535 double this_value = Number(); in SameValue() local
1538 if (this_value != other_value) { in SameValue()
1539 return std::isnan(this_value) && std::isnan(other_value); in SameValue()
1542 return (std::signbit(this_value) == std::signbit(other_value)); in SameValue()
1577 double this_value = Number(); in SameValueZero() local
1580 return this_value == other_value || in SameValueZero()
1581 (std::isnan(this_value) && std::isnan(other_value)); in SameValueZero()
/external/autotest/frontend/afe/
Drpc_utils.py251 this_value = getattr(obj, field)
252 if this_value != value: