/arkcompiler/ets_runtime/ecmascript/ |
H A D | tagged_list.h | 41 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 D | js_tagged_value.cpp | 1543 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 D | tagged_list.cpp | 138 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 D | js_api_stack.h | 35 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<JSAPIStack> &obj);
|
H A D | js_api_deque.h | 50 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<JSAPIDeque> &deque);
|
H A D | js_api_linked_list.h | 41 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<JSAPILinkedList> &list);
|
H A D | js_api_list.h | 71 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<JSAPIList> &list);
|
H A D | js_api_queue.h | 41 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<JSAPIQueue> &obj);
|
H A D | js_api_arraylist.h | 71 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<JSAPIArrayList> &obj);
|
H A D | js_api_vector.h | 85 static JSHandle<TaggedArray> OwnKeys(JSThread *thread, const JSHandle<JSAPIVector> &obj);
|
H A D | js_api_linked_list.cpp | 228 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 D | js_api_list.cpp | 242 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 D | js_api_bitvector.h | 65 static JSHandle<TaggedArray> OwnKeys(JSThread* thread, const JSHandle<JSAPIBitVector>& obj);
|
H A D | js_api_stack.cpp | 132 JSHandle<TaggedArray> JSAPIStack::OwnKeys(JSThread *thread, const JSHandle<JSAPIStack> &obj) in OwnKeys() function in panda::ecmascript::JSAPIStack
|
H A D | js_api_bitvector.cpp | 443 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 D | js_api_deque.cpp | 198 JSHandle<TaggedArray> JSAPIDeque::OwnKeys(JSThread *thread, const JSHandle<JSAPIDeque> &deque) in OwnKeys() function in panda::ecmascript::JSAPIDeque
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_api_deque_test.cpp | 216 * @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 D | js_api_list_test.cpp | 257 HWTEST_F_L0(JSAPIListTest, OwnKeys) in HWTEST_F_L0() 265 JSHandle<TaggedArray> keyArray = JSAPIList::OwnKeys(thread, list); in HWTEST_F_L0()
|
H A D | js_api_queue_test.cpp | 108 HWTEST_F_L0(JSAPIQueueTest, OwnKeys) in HWTEST_F_L0() 116 JSHandle<TaggedArray> arrayKey = JSAPIQueue::OwnKeys(thread, jsQueue); in HWTEST_F_L0()
|
H A D | js_api_stack_test.cpp | 278 * @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 D | js_api_linked_list_test.cpp | 289 HWTEST_F_L0(JSAPILinkedListTest, OwnKeys) in HWTEST_F_L0() 297 JSHandle<TaggedArray> keyArray = JSAPILinkedList::OwnKeys(thread, linkedList); in HWTEST_F_L0()
|
H A D | js_api_bitvector_test.cpp | 466 * @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 D | js_api_vector_test.cpp | 429 * @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 D | js_api_arraylist_test.cpp | 570 * @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 D | builtins_reflect.cpp | 257 BUILTINS_API_TRACE(argv->GetThread(), Reflect, OwnKeys); in ReflectOwnKeys()
|