/third_party/node/test/js-native-api/test_object/ |
D | test_null.c | 93 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/ |
D | v8-object.h | 516 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/ |
D | node_contextify.cc | 546 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()
|
D | js_native_api_v8.cc | 1155 v8::Maybe<bool> has_maybe = obj->HasOwnProperty(context, k.As<v8::Name>()); in napi_has_own_property()
|
/third_party/node/deps/v8/src/objects/ |
D | js-objects.h | 127 V8_EXPORT_PRIVATE V8_WARN_UNUSED_RESULT static Maybe<bool> HasOwnProperty( 129 V8_WARN_UNUSED_RESULT static inline Maybe<bool> HasOwnProperty(
|
D | js-objects-inl.h | 829 Maybe<bool> JSReceiver::HasOwnProperty(Isolate* isolate, in HasOwnProperty() function
|
D | js-objects.cc | 124 Maybe<bool> JSReceiver::HasOwnProperty(Isolate* isolate, in HasOwnProperty() function in v8::internal::JSReceiver
|
D | objects.cc | 431 return JSReceiver::HasOwnProperty(isolate, Handle<JSReceiver>::cast(object), in IsErrorObject()
|
/third_party/node/deps/v8/src/debug/ |
D | debug-scopes.cc | 568 JSReceiver::HasOwnProperty(isolate_, scope, name).FromMaybe(true)) { in ScopeObject()
|
/third_party/node/src/crypto/ |
D | crypto_common.cc | 1012 if (!result->HasOwnProperty(env->context(), v8_name).To(&multiple)) { in GetX509NameObject()
|
/third_party/node/deps/v8/src/api/ |
D | api.cc | 4784 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/ |
D | value-mirror.cc | 836 object->HasOwnProperty(context, toV8String(isolate, "length")); in isArrayLike()
|
/third_party/node/deps/v8/src/wasm/ |
D | wasm-js.cc | 3011 if (JSObject::HasOwnProperty(isolate, webassembly, tag_name) in InstallConditionalFeatures()
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V6.md | 5186 …dejs/node/commit/ac32340997)] - **src**: replace usage of deprecated HasOwnProperty (Michaël Zasso…
|
/third_party/chromium/patch/ |
D | 0001-cve.patch | 151856 if (JSObject::HasOwnProperty(webassembly, tag_name).FromMaybe(true)) {
|