Searched refs:GetOwnPropertyDescriptor (Results 1 – 9 of 9) sorted by relevance
/external/v8/src/ |
D | key-accumulator.cc | 238 JSProxy::GetOwnPropertyDescriptor(isolate, owner, key, &desc); in FilterProxyKeys()
|
D | objects.cc | 875 JSReceiver::GetOwnPropertyDescriptor(isolate, target, name, &target_desc); in GetProperty() 4227 JSReceiver::GetOwnPropertyDescriptor(&own_lookup, &desc); in SetSuperProperty() 4885 Maybe<bool> target_found = JSReceiver::GetOwnPropertyDescriptor( in HasProperty() 4957 JSReceiver::GetOwnPropertyDescriptor(isolate, target, name, &target_desc); in SetProperty() 5023 JSReceiver::GetOwnPropertyDescriptor(isolate, target, name, &target_desc); in DeletePropertyOrElement() 5119 Maybe<bool> found = JSProxy::GetOwnPropertyDescriptor( in GetPropertyAttributes() 6530 MAYBE_RETURN(GetOwnPropertyDescriptor(it, ¤t), Nothing<bool>()); in OrdinaryDefineOwnProperty() 6902 Maybe<bool> success = GetOwnPropertyDescriptor( in DefineOwnProperty() 7010 Maybe<bool> success = GetOwnPropertyDescriptor( in ArraySetLength() 7138 JSReceiver::GetOwnPropertyDescriptor(isolate, target, key, &target_desc); in DefineOwnProperty() [all …]
|
D | builtins.cc | 1498 JSReceiver::GetOwnPropertyDescriptor(isolate, from, next_key, &desc); in BUILTIN() 1841 Maybe<bool> found = JSReceiver::GetOwnPropertyDescriptor( in BUILTIN()
|
D | objects.h | 1887 MUST_USE_RESULT static Maybe<bool> GetOwnPropertyDescriptor( 1890 MUST_USE_RESULT static Maybe<bool> GetOwnPropertyDescriptor( 9590 MUST_USE_RESULT static Maybe<bool> GetOwnPropertyDescriptor(
|
D | api.cc | 3678 MaybeLocal<Value> v8::Object::GetOwnPropertyDescriptor(Local<Context> context, in GetOwnPropertyDescriptor() function in v8::v8::Object 3687 i::JSReceiver::GetOwnPropertyDescriptor(isolate, obj, key_name, &desc); in GetOwnPropertyDescriptor() 3697 Local<Value> v8::Object::GetOwnPropertyDescriptor(Local<String> key) { in GetOwnPropertyDescriptor() function in v8::v8::Object 3699 RETURN_TO_LOCAL_UNCHECKED(GetOwnPropertyDescriptor(context, key), Value); in GetOwnPropertyDescriptor()
|
/external/v8/src/runtime/ |
D | runtime-object.cc | 285 Maybe<bool> found = JSReceiver::GetOwnPropertyDescriptor( in RUNTIME_FUNCTION()
|
/external/v8/include/ |
D | v8.h | 2708 Local<Value> GetOwnPropertyDescriptor(Local<String> key)); 2709 V8_WARN_UNUSED_RESULT MaybeLocal<Value> GetOwnPropertyDescriptor(
|
/external/v8/test/cctest/ |
D | test-api.cc | 22777 TEST(GetOwnPropertyDescriptor) { in TEST() argument 22791 x->GetOwnPropertyDescriptor(env.local(), v8_str("no_prop")) in TEST() 22795 x->GetOwnPropertyDescriptor(env.local(), v8_str("p0")).ToLocalChecked(); in TEST() 22802 x->GetOwnPropertyDescriptor(env.local(), v8_str("p1")).ToLocalChecked(); in TEST()
|
/external/v8/ |
D | ChangeLog | 12929 Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor,
|