/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | layout_info_test.cpp | 145 layoutInfoHandle->GetAllKeys(thread, infoLength, 0, *keyArray, objectHandle); // 0: offset in GetAllKeysCommon() 156 HWTEST_F_L0(LayoutInfoTest, GetAllKeys) in HWTEST_F_L0()
|
H A D | template_map_test.cpp | 258 * @tc.name: GetAllKeys 261 * GetAllKeys function with the offset at which the copying of the elements start and the target TaggedArray 266 HWTEST_F_L0(TemplateMapTest, GetAllKeys) in HWTEST_F_L0() 279 templateMap->GetAllKeys(thread, 5, *storeKeyArray); // 5: means the index of array in HWTEST_F_L0()
|
H A D | global_dictionary_test.cpp | 187 * @tc.name: GetAllKeys 192 HWTEST_F_L0(GlobalDictionaryTest, GetAllKeys) in HWTEST_F_L0() 215 dictHandle->GetAllKeys(thread, offset, *keyArray); in HWTEST_F_L0()
|
H A D | tagged_dictionary_test.cpp | 231 * "GetAllKeys" function to get the key of the dictionary to the taggedarray,then check whether the length 253 NumberDictionary::GetAllKeys(thread, dictHandle, 1, storeKeyArray); // 1: store to the second position of the array in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | global_dictionary.h | 77 inline void GetAllKeys(const JSThread *thread, int offset, TaggedArray *keyArray) const;
|
H A D | tagged_dictionary.h | 65 void GetAllKeys(const JSThread *thread, int offset, TaggedArray *keyArray) const; 131 static void GetAllKeys(const JSThread *thread, const JSHandle<NumberDictionary> &obj, int offset,
|
H A D | layout_info.h | 97 void GetAllKeys(const JSThread *thread, int end, int offset, TaggedArray *keyArray,
|
H A D | layout_info.cpp | 31 void LayoutInfo::GetAllKeys(const JSThread *thread, int end, int offset, TaggedArray *keyArray, in GetAllKeys() function in panda::ecmascript::LayoutInfo
|
H A D | global_dictionary-inl.h | 100 void GlobalDictionary::GetAllKeys(const JSThread *thread, int offset, TaggedArray *keyArray) const in GetAllKeys() function in panda::ecmascript::GlobalDictionary
|
H A D | tagged_dictionary.cpp | 67 void NameDictionary::GetAllKeys(const JSThread *thread, int offset, TaggedArray *keyArray) const in GetAllKeys() function in panda::ecmascript::NameDictionary 294 void NumberDictionary::GetAllKeys(const JSThread *thread, const JSHandle<NumberDictionary> &obj, int offset, in GetAllKeys() function in panda::ecmascript::NumberDictionary
|
H A D | tagged_hash_table.h | 203 inline void GetAllKeys(const JSThread *thread, int offset, TaggedArray *keyArray) const in GetAllKeys() function in panda::ecmascript::TaggedHashTable
|
H A D | js_object.cpp | 481 void JSObject::GetAllKeys(const JSThread *thread, const JSHandle<JSObject> &obj, int offset, in GetAllKeys() function in panda::ecmascript::JSObject 490 ->GetAllKeys(thread, end, offset, *keyArray, obj); in GetAllKeys() 497 return dict->GetAllKeys(thread, offset, *keyArray); in GetAllKeys() 501 dict->GetAllKeys(thread, offset, *keyArray); in GetAllKeys() 636 NumberDictionary::GetAllKeys(thread, JSHandle<NumberDictionary>(elements), elementIndex, keyArray); in GetAllElementKeys() 1583 GetAllKeys(thread, obj, static_cast<int32_t>(numOfElements), keyArray); in GetOwnPropertyKeys()
|
H A D | js_object.h | 674 static void GetAllKeys(const JSThread *thread, const JSHandle<JSObject> &obj, int offset,
|