Home
last modified time | relevance | path

Searched refs:OwnKeys (Results 1 - 25 of 29) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/
H A Dtagged_list.h41 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<Derived> &taggedList);
148 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<TaggedSingleList> &taggedList);
186 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<TaggedDoubleList> &taggedList);
H A Djs_tagged_value.cpp1543 return JSAPIArrayList::OwnKeys(thread, JSHandle<JSAPIArrayList>::Cast(obj)); in GetOwnContainerPropertyKeys()
1546 return JSAPIQueue::OwnKeys(thread, JSHandle<JSAPIQueue>::Cast(obj)); in GetOwnContainerPropertyKeys()
1552 return JSAPIDeque::OwnKeys(thread, JSHandle<JSAPIDeque>::Cast(obj)); in GetOwnContainerPropertyKeys()
1555 return JSAPIStack::OwnKeys(thread, JSHandle<JSAPIStack>::Cast(obj)); in GetOwnContainerPropertyKeys()
1558 return JSAPIList::OwnKeys(thread, JSHandle<JSAPIList>::Cast(obj)); in GetOwnContainerPropertyKeys()
1561 return JSAPILinkedList::OwnKeys(thread, JSHandle<JSAPILinkedList>::Cast(obj)); in GetOwnContainerPropertyKeys()
1572 return JSAPIVector::OwnKeys(thread, JSHandle<JSAPIVector>::Cast(obj)); in GetOwnContainerPropertyKeys()
1575 return JSAPIBitVector::OwnKeys(thread, JSHandle<JSAPIBitVector>::Cast(obj)); in GetOwnContainerPropertyKeys()
1598 return JSAPIList::OwnKeys(thread, JSHandle<JSAPIList>::Cast(obj)); in GetOwnContainerEnumPropertyKeys()
1601 return JSAPILinkedList::OwnKeys(threa in GetOwnContainerEnumPropertyKeys()
[all...]
H A Dtagged_list.cpp138 JSHandle<TaggedArray> TaggedList<Derived>::OwnKeys(JSThread *thread, const JSHandle<Derived> &list) in OwnKeys() function in panda::ecmascript::TaggedList
565 JSHandle<TaggedArray> TaggedSingleList::OwnKeys(JSThread *thread, const JSHandle<TaggedSingleList> &taggedList) in OwnKeys() function in panda::ecmascript::TaggedSingleList
567 return TaggedList<TaggedSingleList>::OwnKeys(thread, taggedList); in OwnKeys()
809 JSHandle<TaggedArray> TaggedDoubleList::OwnKeys(JSThread *thread, const JSHandle<TaggedDoubleList> &taggedList) in OwnKeys() function in panda::ecmascript::TaggedDoubleList
811 return TaggedList<TaggedDoubleList>::OwnKeys(thread, taggedList); in OwnKeys()
/arkcompiler/ets_runtime/ecmascript/js_api/
H A Djs_api_stack.h35 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<JSAPIStack> &obj);
H A Djs_api_deque.h50 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<JSAPIDeque> &deque);
H A Djs_api_linked_list.h41 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<JSAPILinkedList> &list);
H A Djs_api_list.h71 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<JSAPIList> &list);
H A Djs_api_queue.h41 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<JSAPIQueue> &obj);
H A Djs_api_arraylist.h71 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<JSAPIArrayList> &obj);
H A Djs_api_vector.h85 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<JSAPIVector> &obj);
H A Djs_api_linked_list.cpp228 JSHandle<TaggedArray> JSAPILinkedList::OwnKeys(JSThread *thread, const JSHandle<JSAPILinkedList> &list) in OwnKeys() function in panda::ecmascript::JSAPILinkedList
231 return TaggedDoubleList::OwnKeys(thread, doubleList); in OwnKeys()
H A Djs_api_list.cpp242 JSHandle<TaggedArray> JSAPIList::OwnKeys(JSThread *thread, const JSHandle<JSAPIList> &list) in OwnKeys() function in panda::ecmascript::JSAPIList
245 return TaggedSingleList::OwnKeys(thread, singleList); in OwnKeys()
H A Djs_api_bitvector.h65 static JSHandle<TaggedArray> OwnKeys(JSThread* thread, const JSHandle<JSAPIBitVector>& obj);
H A Djs_api_stack.cpp132 JSHandle<TaggedArray> JSAPIStack::OwnKeys(JSThread *thread, const JSHandle<JSAPIStack> &obj) in OwnKeys() function in panda::ecmascript::JSAPIStack
H A Djs_api_bitvector.cpp443 JSHandle<TaggedArray> JSAPIBitVector::OwnKeys(JSThread* thread, const JSHandle<JSAPIBitVector>& obj) in OwnKeys() function in panda::ecmascript::JSAPIBitVector
460 return OwnKeys(thread, obj); in OwnEnumKeys()
H A Djs_api_deque.cpp198 JSHandle<TaggedArray> JSAPIDeque::OwnKeys(JSThread *thread, const JSHandle<JSAPIDeque> &deque) in OwnKeys() function in panda::ecmascript::JSAPIDeque
/arkcompiler/ets_runtime/ecmascript/tests/
H A Djs_api_deque_test.cpp216 * @tc.name: OwnKeys
221 HWTEST_F_L0(JSAPIDequeTest, OwnKeys) in HWTEST_F_L0()
230 // test OwnKeys in HWTEST_F_L0()
231 JSHandle<TaggedArray> keyArray = JSAPIDeque::OwnKeys(thread, toor); in HWTEST_F_L0()
H A Djs_api_list_test.cpp257 HWTEST_F_L0(JSAPIListTest, OwnKeys) in HWTEST_F_L0()
265 JSHandle<TaggedArray> keyArray = JSAPIList::OwnKeys(thread, list); in HWTEST_F_L0()
H A Djs_api_queue_test.cpp108 HWTEST_F_L0(JSAPIQueueTest, OwnKeys) in HWTEST_F_L0()
116 JSHandle<TaggedArray> arrayKey = JSAPIQueue::OwnKeys(thread, jsQueue); in HWTEST_F_L0()
H A Djs_api_stack_test.cpp278 * @tc.name: OwnKeys
283 HWTEST_F_L0(JSAPIStackTest, OwnKeys) in HWTEST_F_L0()
291 JSHandle<TaggedArray> keyArray = JSAPIStack::OwnKeys(thread, toor); in HWTEST_F_L0()
H A Djs_api_linked_list_test.cpp289 HWTEST_F_L0(JSAPILinkedListTest, OwnKeys) in HWTEST_F_L0()
297 JSHandle<TaggedArray> keyArray = JSAPILinkedList::OwnKeys(thread, linkedList); in HWTEST_F_L0()
H A Djs_api_bitvector_test.cpp466 * @tc.name: OwnKeys
471 HWTEST_F_L0(JSAPIBitVectorTest, OwnKeys) in HWTEST_F_L0()
480 JSHandle<TaggedArray> keys = JSAPIBitVector::OwnKeys(thread, bitVector); in HWTEST_F_L0()
H A Djs_api_vector_test.cpp429 * @tc.name: OwnKeys
434 HWTEST_F_L0(JSAPIVectorTest, OwnKeys) in HWTEST_F_L0()
442 JSHandle<TaggedArray> keyArray = JSAPIVector::OwnKeys(thread, toor); in HWTEST_F_L0()
H A Djs_api_arraylist_test.cpp570 * @tc.name: OwnKeys
575 HWTEST_F_L0(JSAPIArrayListTest, OwnKeys) in HWTEST_F_L0()
583 JSHandle<TaggedArray> keys = JSAPIArrayList::OwnKeys(thread, arrayList); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_reflect.cpp257 BUILTINS_API_TRACE(argv->GetThread(), Reflect, OwnKeys); in ReflectOwnKeys()

Completed in 17 milliseconds

12