Home
last modified time | relevance | path

Searched refs:OwnPropertyKeys (Results 1 - 9 of 9) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/module/
H A Djs_module_namespace.h56 // 9.4.6.10[[OwnPropertyKeys]]
57 static JSHandle<TaggedArray> OwnPropertyKeys(JSThread *thread, const JSHandle<JSTaggedValue> &proxy);
H A Djs_module_namespace.cpp173 JSHandle<TaggedArray> ModuleNamespace::OwnPropertyKeys(JSThread *thread, const JSHandle<JSTaggedValue> &obj) in OwnPropertyKeys() function in panda::ecmascript::ModuleNamespace
/arkcompiler/ets_runtime/ecmascript/
H A Djs_proxy.h67 // ES6 9.5.12 [[OwnPropertyKeys]] ()
68 static JSHandle<TaggedArray> OwnPropertyKeys(JSThread *thread, const JSHandle<JSProxy> &proxy);
H A Djs_typed_array.h81 // 9.4.5.6 [[OwnPropertyKeys]] ( )
82 static JSHandle<TaggedArray> OwnPropertyKeys(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray);
H A Dproperty_accessor.cpp241 JSHandle<TaggedArray> proxyArr = JSProxy::OwnPropertyKeys(thread_, JSHandle<JSProxy>(object)); in PushRemainingKeys()
H A Djs_tagged_value.cpp1284 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 Djs_typed_array.cpp288 // 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 Djs_proxy.cpp710 // 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 Djs_proxy_test.cpp468 // 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