Lines Matching defs:value

24 // 19.1.1.1 Object ( [ value ] )
45 // 2.If value is null, undefined or not supplied, return ObjectCreate(%ObjectPrototype%).
46 JSHandle<JSTaggedValue> value = GetCallArg(argv, 0);
47 if (value->IsNull() || value->IsUndefined()) {
52 // 3.Return ToObject(value).
53 return JSTaggedValue::ToObject(thread, value).GetTaggedValue();
72 JSTaggedValue value = desc.GetValue().GetTaggedValue();
73 if (value.IsUndefined() || JSHandle<JSTaggedValue>::Cast(from)->IsJSProxy()) {
74 value = ObjectFastOperator::FastGetPropertyByValue(thread, from.GetTaggedValue(),
80 value);
138 JSTaggedValue value = desc.GetValue().GetTaggedValue();
139 if (value.IsUndefined() || JSHandle<JSTaggedValue>::Cast(from)->IsJSProxy()) {
140 value = ObjectFastOperator::FastGetPropertyByValue(thread, from.GetTaggedValue(),
147 value);
652 // 3. Let nameList be ? EnumerableOwnPropertyNames(obj, value).
799 // 3. Let O be ToObject(this value).
822 // 2. Let O be ToObject(this value).
857 // 3. Let O be ToObject(this value).
874 // 8. Return the value of desc.[[Enumerable]].
885 // 1. Let O be the this value.
949 // 1. If the this value is undefined, return "[object Undefined]".
955 // 2. If the this value is null, return "[object Null]".
960 // 3. Let O be ToObject(this value).
998 // 1. Return ToObject(this value).
1011 // 1.Let obj be ToObject(this value).
1027 // 1. Let O be RequireObjectCoercible(this value).
1086 // 2. Let nameList be ? EnumerableOwnPropertyNames(obj, key+value).
1134 // 1. Let O be the this value.
1143 JSHandle<JSTaggedValue> value = GetCallArg(argv, 1);
1149 // 5. Perform ! CreateDataPropertyOrThrow(O, propertyKey, value).
1150 JSObject::CreateDataPropertyOrThrow(thread, thisObjHandle, propertyKey, value);