Home
last modified time | relevance | path

Searched refs:GetOwnPropertyDescriptor (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/builtins/
Dbuiltins-object.cc490 Maybe<bool> found = JSProxy::GetOwnPropertyDescriptor( in ObjectLookupAccessor()
688 JSReceiver::GetOwnPropertyDescriptor(isolate, receiver, key, &desc); in BUILTIN()
849 Maybe<bool> did_get_descriptor = JSReceiver::GetOwnPropertyDescriptor( in BUILTIN()
Dbuiltins-reflect.cc117 Maybe<bool> found = JSReceiver::GetOwnPropertyDescriptor( in BUILTIN()
/external/v8/src/
Dkeys.cc115 JSProxy::GetOwnPropertyDescriptor(isolate, owner, key, &desc); in FilterProxyKeys()
778 Maybe<bool> found = JSReceiver::GetOwnPropertyDescriptor( in CollectOwnJSProxyKeys()
Dobjects.cc1099 JSReceiver::GetOwnPropertyDescriptor(isolate, target, name, &target_desc); in GetProperty()
2112 JSReceiver::GetOwnPropertyDescriptor(isolate, from, next_key, &desc); in SetOrCopyDataProperties()
4409 JSReceiver::GetOwnPropertyDescriptor(&own_lookup, &desc); in SetSuperProperty()
5006 Maybe<bool> target_found = JSReceiver::GetOwnPropertyDescriptor( in HasProperty()
5078 JSReceiver::GetOwnPropertyDescriptor(isolate, target, name, &target_desc); in SetProperty()
5144 JSReceiver::GetOwnPropertyDescriptor(isolate, target, name, &target_desc); in DeletePropertyOrElement()
5276 Maybe<bool> found = JSProxy::GetOwnPropertyDescriptor( in GetPropertyAttributes()
6228 MAYBE_RETURN(GetOwnPropertyDescriptor(it, &current), Nothing<bool>()); in OrdinaryDefineOwnProperty()
6601 Maybe<bool> success = GetOwnPropertyDescriptor( in DefineOwnProperty()
6709 Maybe<bool> success = GetOwnPropertyDescriptor( in ArraySetLength()
[all …]
Dapi.cc4455 MaybeLocal<Value> v8::Object::GetOwnPropertyDescriptor(Local<Context> context, in GetOwnPropertyDescriptor() function in v8::v8::Object
4457 PREPARE_FOR_EXECUTION(context, Object, GetOwnPropertyDescriptor, Value); in GetOwnPropertyDescriptor()
4463 i::JSReceiver::GetOwnPropertyDescriptor(isolate, obj, key_name, &desc); in GetOwnPropertyDescriptor()
4473 Local<Value> v8::Object::GetOwnPropertyDescriptor(Local<String> key) { in GetOwnPropertyDescriptor() function in v8::v8::Object
4475 RETURN_TO_LOCAL_UNCHECKED(GetOwnPropertyDescriptor(context, key), Value); in GetOwnPropertyDescriptor()
Dobjects.h1981 V8_EXPORT_PRIVATE MUST_USE_RESULT static Maybe<bool> GetOwnPropertyDescriptor(
1984 MUST_USE_RESULT static Maybe<bool> GetOwnPropertyDescriptor(
10309 MUST_USE_RESULT static Maybe<bool> GetOwnPropertyDescriptor(
/external/v8/src/inspector/
Dv8-console.cc943 ->GetOwnPropertyDescriptor( in ~CommandLineAPIScope()
/external/v8/include/
Dv8.h2995 Local<Value> GetOwnPropertyDescriptor(Local<String> key));
2996 V8_WARN_UNUSED_RESULT MaybeLocal<Value> GetOwnPropertyDescriptor(
/external/v8/
DChangeLog28080 Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor,