Home
last modified time | relevance | path

Searched refs:HasOwnProperty (Results 1 – 15 of 15) sorted by relevance

/third_party/node/test/js-native-api/test_object/
Dtest_null.c93 static napi_value HasOwnProperty(napi_env env, napi_callback_info info) { in HasOwnProperty() function
374 DECLARE_NODE_API_PROPERTY("hasOwnProperty", HasOwnProperty), in init_test_null()
/third_party/node/deps/v8/include/
Dv8-object.h516 V8_WARN_UNUSED_RESULT Maybe<bool> HasOwnProperty(Local<Context> context,
518 V8_WARN_UNUSED_RESULT Maybe<bool> HasOwnProperty(Local<Context> context,
/third_party/node/src/
Dnode_contextify.cc546 if (desc_obj->HasOwnProperty(context, env->get_string()).FromMaybe(false) || in PropertySetterCallback()
547 desc_obj->HasOwnProperty(context, env->set_string()).FromMaybe(false)) in PropertySetterCallback()
565 if (sandbox->HasOwnProperty(context, property).FromMaybe(false)) { in PropertyDescriptorCallback()
Djs_native_api_v8.cc1155 v8::Maybe<bool> has_maybe = obj->HasOwnProperty(context, k.As<v8::Name>()); in napi_has_own_property()
/third_party/node/deps/v8/src/objects/
Djs-objects.h127 V8_EXPORT_PRIVATE V8_WARN_UNUSED_RESULT static Maybe<bool> HasOwnProperty(
129 V8_WARN_UNUSED_RESULT static inline Maybe<bool> HasOwnProperty(
Djs-objects-inl.h829 Maybe<bool> JSReceiver::HasOwnProperty(Isolate* isolate, in HasOwnProperty() function
Djs-objects.cc124 Maybe<bool> JSReceiver::HasOwnProperty(Isolate* isolate, in HasOwnProperty() function in v8::internal::JSReceiver
Dobjects.cc431 return JSReceiver::HasOwnProperty(isolate, Handle<JSReceiver>::cast(object), in IsErrorObject()
/third_party/node/deps/v8/src/debug/
Ddebug-scopes.cc568 JSReceiver::HasOwnProperty(isolate_, scope, name).FromMaybe(true)) { in ScopeObject()
/third_party/node/src/crypto/
Dcrypto_common.cc1012 if (!result->HasOwnProperty(env->context(), v8_name).To(&multiple)) { in GetX509NameObject()
/third_party/node/deps/v8/src/api/
Dapi.cc4784 return HasOwnProperty(context, Local<Name>(reinterpret_cast<Name*>(*key))); in HasPrivate()
4897 Maybe<bool> v8::Object::HasOwnProperty(Local<Context> context, in HasOwnProperty() function in v8::v8::Object
4900 ENTER_V8(isolate, context, Object, HasOwnProperty, Nothing<bool>(), in HasOwnProperty()
4904 auto result = i::JSReceiver::HasOwnProperty(isolate, self, key_val); in HasOwnProperty()
4910 Maybe<bool> v8::Object::HasOwnProperty(Local<Context> context, uint32_t index) { in HasOwnProperty() function in v8::v8::Object
4912 ENTER_V8(isolate, context, Object, HasOwnProperty, Nothing<bool>(), in HasOwnProperty()
4915 auto result = i::JSReceiver::HasOwnProperty(isolate, self, index); in HasOwnProperty()
/third_party/node/deps/v8/src/inspector/
Dvalue-mirror.cc836 object->HasOwnProperty(context, toV8String(isolate, "length")); in isArrayLike()
/third_party/node/deps/v8/src/wasm/
Dwasm-js.cc3011 if (JSObject::HasOwnProperty(isolate, webassembly, tag_name) in InstallConditionalFeatures()
/third_party/node/doc/changelogs/
DCHANGELOG_V6.md5186 …dejs/node/commit/ac32340997)] - **src**: replace usage of deprecated HasOwnProperty (Michaël Zasso…
/third_party/chromium/patch/
D0001-cve.patch151856 if (JSObject::HasOwnProperty(webassembly, tag_name).FromMaybe(true)) {