Home
last modified time | relevance | path

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

/external/v8/src/builtins/
Dbuiltins-callsite.cc16 if (!JSReceiver::HasOwnProperty( \
/external/v8/src/runtime/
Druntime-array.cc306 Maybe<bool> source_has_prop = JSReceiver::HasOwnProperty(source, index); in ConditionalCopy()
310 Maybe<bool> target_has_prop = JSReceiver::HasOwnProperty(target, index); in ConditionalCopy()
Druntime-object.cc322 JSReceiver::HasOwnProperty(Handle<JSReceiver>::cast(object), key); in RUNTIME_FUNCTION()
369 JSReceiver::HasOwnProperty(Handle<JSProxy>::cast(object), key); in RUNTIME_FUNCTION()
/external/pdfium/fxjs/
Dcfxjse_value.cpp206 ->HasOwnProperty(m_pIsolate->GetCurrentContext(), hKey) in HasObjectOwnProperty()
/external/v8/src/inspector/
Dv8-injected-script-host.cc324 ->HasOwnProperty(info.GetIsolate()->GetCurrentContext(), in objectHasOwnPropertyCallback()
/external/v8/src/debug/
Ddebug-scopes.cc848 Maybe<bool> maybe = JSReceiver::HasOwnProperty(ext, variable_name); in SetContextExtensionValue()
/external/v8/src/
Daccessors.cc891 if (JSReceiver::HasOwnProperty(obj, stack_trace_symbol).FromMaybe(false)) { in ErrorStackSetter()
Dobjects.h2060 V8_WARN_UNUSED_RESULT static Maybe<bool> HasOwnProperty(
2062 V8_WARN_UNUSED_RESULT static inline Maybe<bool> HasOwnProperty(
Dapi.cc4629 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()
Dobjects-inl.h2800 Maybe<bool> JSReceiver::HasOwnProperty(Handle<JSReceiver> object, in HasOwnProperty() function
Dobjects.cc328 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/
Dintl-objects.cc409 Maybe<bool> maybe = JSReceiver::HasOwnProperty(resolved, key); in SetResolvedNumericSettings()
421 maybe = JSReceiver::HasOwnProperty(resolved, key); in SetResolvedNumericSettings()
/external/v8/include/
Dv8.h3612 V8_WARN_UNUSED_RESULT Maybe<bool> HasOwnProperty(Local<Context> context,
3614 V8_WARN_UNUSED_RESULT Maybe<bool> HasOwnProperty(Local<Context> context,
/external/v8/
DChangeLog47701 Added Object::HasOwnProperty() to the API.