Searched refs:this_value (Results 1 – 7 of 7) sorted by relevance
/external/v8/test/mjsunit/harmony/ |
D | 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/src/compiler/ |
D | js-native-context-specialization.cc | 125 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/ |
D | 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/ |
D | bignum.cc | 427 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()
|
D | d8.cc | 1803 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()
|
D | objects.cc | 1535 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/ |
D | rpc_utils.py | 251 this_value = getattr(obj, field) 252 if this_value != value:
|