Searched refs:HasOwnProperty (Results 1 – 14 of 14) sorted by relevance
/external/v8/src/builtins/ |
D | builtins-callsite.cc | 16 if (!JSReceiver::HasOwnProperty( \
|
/external/v8/src/runtime/ |
D | runtime-array.cc | 306 Maybe<bool> source_has_prop = JSReceiver::HasOwnProperty(source, index); in ConditionalCopy() 310 Maybe<bool> target_has_prop = JSReceiver::HasOwnProperty(target, index); in ConditionalCopy()
|
D | runtime-object.cc | 322 JSReceiver::HasOwnProperty(Handle<JSReceiver>::cast(object), key); in RUNTIME_FUNCTION() 369 JSReceiver::HasOwnProperty(Handle<JSProxy>::cast(object), key); in RUNTIME_FUNCTION()
|
/external/pdfium/fxjs/ |
D | cfxjse_value.cpp | 206 ->HasOwnProperty(m_pIsolate->GetCurrentContext(), hKey) in HasObjectOwnProperty()
|
/external/v8/src/inspector/ |
D | v8-injected-script-host.cc | 324 ->HasOwnProperty(info.GetIsolate()->GetCurrentContext(), in objectHasOwnPropertyCallback()
|
/external/v8/src/debug/ |
D | debug-scopes.cc | 848 Maybe<bool> maybe = JSReceiver::HasOwnProperty(ext, variable_name); in SetContextExtensionValue()
|
/external/v8/src/ |
D | accessors.cc | 891 if (JSReceiver::HasOwnProperty(obj, stack_trace_symbol).FromMaybe(false)) { in ErrorStackSetter()
|
D | objects.h | 2060 V8_WARN_UNUSED_RESULT static Maybe<bool> HasOwnProperty( 2062 V8_WARN_UNUSED_RESULT static inline Maybe<bool> HasOwnProperty(
|
D | api.cc | 4629 return HasOwnProperty(context, Local<Name>(reinterpret_cast<Name*>(*key))); in HasPrivate() 4741 Maybe<bool> v8::Object::HasOwnProperty(Local<Context> context, in HasOwnProperty() function in v8::v8::Object 4744 ENTER_V8(isolate, context, Object, HasOwnProperty, Nothing<bool>(), in HasOwnProperty() 4748 auto result = i::JSReceiver::HasOwnProperty(self, key_val); in HasOwnProperty() 4754 Maybe<bool> v8::Object::HasOwnProperty(Local<Context> context, uint32_t index) { in HasOwnProperty() function in v8::v8::Object 4756 ENTER_V8(isolate, context, Object, HasOwnProperty, Nothing<bool>(), in HasOwnProperty() 4759 auto result = i::JSReceiver::HasOwnProperty(self, index); in HasOwnProperty()
|
D | objects-inl.h | 2800 Maybe<bool> JSReceiver::HasOwnProperty(Handle<JSReceiver> object, in HasOwnProperty() function
|
D | objects.cc | 328 return JSReceiver::HasOwnProperty(Handle<JSReceiver>::cast(object), symbol) in IsErrorObject() 1004 Maybe<bool> JSReceiver::HasOwnProperty(Handle<JSReceiver> object, in HasOwnProperty() function in v8::internal::JSReceiver
|
/external/v8/src/objects/ |
D | intl-objects.cc | 409 Maybe<bool> maybe = JSReceiver::HasOwnProperty(resolved, key); in SetResolvedNumericSettings() 421 maybe = JSReceiver::HasOwnProperty(resolved, key); in SetResolvedNumericSettings()
|
/external/v8/include/ |
D | v8.h | 3612 V8_WARN_UNUSED_RESULT Maybe<bool> HasOwnProperty(Local<Context> context, 3614 V8_WARN_UNUSED_RESULT Maybe<bool> HasOwnProperty(Local<Context> context,
|
/external/v8/ |
D | ChangeLog | 47701 Added Object::HasOwnProperty() to the API.
|