Home
last modified time | relevance | path

Searched refs:ToObject (Results 1 – 25 of 115) sorted by relevance

12345

/third_party/node/deps/v8/src/runtime/
Druntime-atomics.cc259 inline Object ToObject(Isolate* isolate, int8_t t) { return Smi::FromInt(t); } in ToObject() function
261 inline Object ToObject(Isolate* isolate, uint8_t t) { return Smi::FromInt(t); } in ToObject() function
263 inline Object ToObject(Isolate* isolate, int16_t t) { return Smi::FromInt(t); } in ToObject() function
265 inline Object ToObject(Isolate* isolate, uint16_t t) { return Smi::FromInt(t); } in ToObject() function
267 inline Object ToObject(Isolate* isolate, int32_t t) { in ToObject() function
271 inline Object ToObject(Isolate* isolate, uint32_t t) { in ToObject() function
275 inline Object ToObject(Isolate* isolate, int64_t t) { in ToObject() function
279 inline Object ToObject(Isolate* isolate, uint64_t t) { in ToObject() function
287 return ToObject(isolate, result); in Do()
306 return ToObject(isolate, result); in Do()
[all …]
/third_party/node/deps/v8/src/builtins/
Dbuiltins-object.cc30 isolate, object, Object::ToObject(isolate, args.receiver())); in BUILTIN()
68 Object::ToObject(isolate, object)); in ObjectDefineAccessor()
107 Object::ToObject(isolate, object)); in ObjectLookupAccessor()
232 isolate, receiver, Object::ToObject(isolate, args.receiver())); in BUILTIN()
279 Object::ToObject(isolate, object)); in GetOwnPropertyKeys()
325 Object::ToObject(isolate, object)); in BUILTIN()
344 Handle<Object> from_descriptor = descriptor.ToObject(isolate); in BUILTIN()
Darray-reduce.tq11 // after the ToObject(O) call that ensures we are dealing with a
34 // after the ToObject(O) call that ensures we are dealing with a
54 // after the ToObject(O) call that ensures we are dealing with a
166 // 1. Let O be ? ToObject(this value).
Darray-reduce-right.tq11 // after the ToObject(O) call that ensures we are dealing with a
35 // after the ToObject(O) call that ensures we are dealing with a
55 // after the ToObject(O) call that ensures we are dealing with a
167 // 1. Let O be ? ToObject(this value).
Darray-foreach.tq11 // after the ToObject(O) call that ensures we are dealing with a
29 // after the ToObject(O) call that ensures we are dealing with a
98 // 1. Let O be ? ToObject(this value).
Darray-every.tq11 // after the ToObject(O) call that ensures we are dealing with a
33 // after the ToObject(O) call that ensures we are dealing with a
117 // 1. Let O be ? ToObject(this value).
Darray-some.tq11 // after the ToObject(O) call that ensures we are dealing with a
33 // after the ToObject(O) call that ensures we are dealing with a
117 // 1. Let O be ? ToObject(this value).
Darray-find.tq11 // after the ToObject(O) call that ensures we are dealing with a
46 // after the ToObject(O) call that ensures we are dealing with a
125 // 1. Let O be ? ToObject(this value).
Darray-findindex.tq11 // after the ToObject(O) call that ensures we are dealing with a
46 // after the ToObject(O) call that ensures we are dealing with a
125 // 1. Let O be ? ToObject(this value).
Dconversion.tq128 // ES6 section 7.1.13 ToObject (argument)
129 transitioning builtin ToObject(implicit context: Context)(input: JSAny):
145 ThrowTypeError(MessageTemplate::kUndefinedOrNullToObject, 'ToObject');
Darray-filter.tq12 // after the ToObject(O) call that ensures we are dealing with a
36 // after the ToObject(O) call that ensures we are dealing with a
154 // 1. Let O be ? ToObject(this value).
Darray-at.tq9 // 1. Let O be ? ToObject(this value).
Dbuiltins-struct.cc30 Object::ToObject(isolate, args.atOrUndefined(isolate, 1), method_name)); in BUILTIN()
Dbuiltins-array.cc262 isolate, receiver, Object::ToObject(isolate, args.receiver())); in BUILTIN()
312 isolate, receiver, Object::ToObject(isolate, args->receiver())); in GenericArrayPush()
405 isolate, receiver, Object::ToObject(isolate, args->receiver())); in GenericArrayPop()
589 isolate, receiver, Object::ToObject(isolate, args.receiver())); in BUILTIN()
1517 Object::ToObject(isolate, args.receiver(), "Array.prototype.concat")); in BUILTIN()
1724 isolate, O, Object::ToObject(isolate, args.receiver(), kMethodName)); in BUILTIN()
1786 isolate, O, Object::ToObject(isolate, args.receiver(), kMethodName)); in BUILTIN()
/third_party/node/deps/v8/src/torque/ls/
Djson.cc35 for (const auto& pair : value.ToObject()) { in SerializeToString()
38 if (++i < value.ToObject().size()) str << ","; in SerializeToString()
Dmessage.h49 return object()[property].ToObject(); in GetObjectProperty()
63 return array.back().ToObject(); in AddObjectElementToArrayProperty()
85 const JsonObject& object() const override { return value_.ToObject(); } in JSON_STRING_ACCESSORS()
86 JsonObject& object() override { return value_.ToObject(); } in object()
Djson.h97 const JsonObject& ToObject() const { in ToObject() function
101 JsonObject& ToObject() { in ToObject() function
Dmessage-macros.h51 return type(GetArrayProperty(#name)[idx].ToObject()); \
/third_party/cef/libcef/renderer/
Dv8_impl.cc1810 v8::Local<v8::Object> obj = value->ToObject(context).ToLocalChecked(); in IsUserCreated()
1861 v8::Local<v8::Object> obj = value->ToObject(context).ToLocalChecked(); in HasValue()
1883 v8::Local<v8::Object> obj = value->ToObject(context).ToLocalChecked(); in HasValue()
1900 v8::Local<v8::Object> obj = value->ToObject(context).ToLocalChecked(); in DeleteValue()
1926 v8::Local<v8::Object> obj = value->ToObject(context).ToLocalChecked(); in DeleteValue()
1947 v8::Local<v8::Object> obj = value->ToObject(context).ToLocalChecked(); in GetValue()
1977 v8::Local<v8::Object> obj = value->ToObject(context).ToLocalChecked(); in GetValue()
2006 v8::Local<v8::Object> obj = value->ToObject(context).ToLocalChecked(); in SetValue()
2050 v8::Local<v8::Object> obj = value->ToObject(context).ToLocalChecked(); in SetValue()
2077 v8::Local<v8::Object> obj = value->ToObject(context).ToLocalChecked(); in SetValue()
[all …]
/third_party/node/deps/v8/src/ic/
Dstub-cache.cc97 Map::cast(StrongTaggedValue::ToObject(isolate(), primary->map)); in Set()
99 Name::cast(StrongTaggedValue::ToObject(isolate(), primary->key)); in Set()
/third_party/node/test/js-native-api/test_conversions/
Dtest_conversions.c113 static napi_value ToObject(napi_env env, napi_callback_info info) { in ToObject() function
146 DECLARE_NODE_API_PROPERTY("toObject", ToObject), in Init()
/third_party/node/deps/v8/src/objects/
Dtagged-value.h26 inline static Object ToObject(Isolate* isolate, StrongTaggedValue object);
Dtagged-value-inl.h31 Object StrongTaggedValue::ToObject(Isolate* isolate, StrongTaggedValue object) { in ToObject() function
Dproperty-descriptor.h44 Handle<Object> ToObject(Isolate* isolate);
/third_party/node/deps/v8/src/heap/
Dallocation-result.h53 HeapObject ToObject() const { in ToObject() function

12345