Searched refs:OwnPropertyKeys (Results 1 - 9 of 9) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/module/ |
H A D | js_module_namespace.h | 56 // 9.4.6.10[[OwnPropertyKeys]] 57 static JSHandle<TaggedArray> OwnPropertyKeys(JSThread *thread, const JSHandle<JSTaggedValue> &proxy);
|
H A D | js_module_namespace.cpp | 173 JSHandle<TaggedArray> ModuleNamespace::OwnPropertyKeys(JSThread *thread, const JSHandle<JSTaggedValue> &obj) in OwnPropertyKeys() function in panda::ecmascript::ModuleNamespace
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_proxy.h | 67 // ES6 9.5.12 [[OwnPropertyKeys]] () 68 static JSHandle<TaggedArray> OwnPropertyKeys(JSThread *thread, const JSHandle<JSProxy> &proxy);
|
H A D | js_typed_array.h | 81 // 9.4.5.6 [[OwnPropertyKeys]] ( ) 82 static JSHandle<TaggedArray> OwnPropertyKeys(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray);
|
H A D | property_accessor.cpp | 241 JSHandle<TaggedArray> proxyArr = JSProxy::OwnPropertyKeys(thread_, JSHandle<JSProxy>(object)); in PushRemainingKeys()
|
H A D | js_tagged_value.cpp | 1284 return JSProxy::OwnPropertyKeys(thread, JSHandle<JSProxy>(obj)); in GetOwnPropertyKeys() 1287 return JSTypedArray::OwnPropertyKeys(thread, obj); in GetOwnPropertyKeys() 1293 return ModuleNamespace::OwnPropertyKeys(thread, obj); in GetOwnPropertyKeys()
|
H A D | js_typed_array.cpp | 288 // 9.4.5.6 [[OwnPropertyKeys]] ( ) 289 JSHandle<TaggedArray> JSTypedArray::OwnPropertyKeys(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray) in OwnPropertyKeys() function in panda::ecmascript::JSTypedArray
|
H A D | js_proxy.cpp | 710 // ES6 9.5.12 [[OwnPropertyKeys]] () 711 JSHandle<TaggedArray> JSProxy::OwnPropertyKeys(JSThread *thread, const JSHandle<JSProxy> &proxy) in OwnPropertyKeys() function in panda::ecmascript::JSProxy 718 THROW_TYPE_ERROR_AND_RETURN(thread, "OwnPropertyKeys: handler is null", in OwnPropertyKeys() 734 // a.Return target.[[OwnPropertyKeys]](). in OwnPropertyKeys() 757 THROW_TYPE_ERROR_AND_RETURN(thread, "OwnPropertyKeys: contains duplicate entries", in OwnPropertyKeys() 767 // 13.Let targetKeys be target.[[OwnPropertyKeys]](). in OwnPropertyKeys() 823 THROW_TYPE_ERROR_AND_RETURN(thread, "OwnPropertyKeys: key is not an element of uncheckedResultKeys", in OwnPropertyKeys() 841 THROW_TYPE_ERROR_AND_RETURN(thread, "OwnPropertyKeys: key is not an element of uncheckedResultKeys", in OwnPropertyKeys() 850 THROW_TYPE_ERROR_AND_RETURN(thread, "OwnPropertyKeys: uncheckedResultKeys is not empty", in OwnPropertyKeys() 864 THROW_TYPE_ERROR_AND_RETURN(thread, "OwnPropertyKeys in GetAllPropertyKeys() [all...] |
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_proxy_test.cpp | 468 // ES6 9.5.12 [[OwnPropertyKeys]] () 469 HWTEST_F_L0(JSProxyTest, OwnPropertyKeys) in HWTEST_F_L0() 477 JSHandle<TaggedArray> res = JSProxy::OwnPropertyKeys(thread, proxyHandle); in HWTEST_F_L0() 481 // 2. handler has "OwnPropertyKeys" in HWTEST_F_L0() 490 JSHandle<TaggedArray> res2 = JSProxy::OwnPropertyKeys(thread, proxyHandle2); in HWTEST_F_L0()
|
Completed in 11 milliseconds