Home
last modified time | relevance | path

Searched refs:storeKeyArray (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/tests/
Dtagged_dictionary_test.cpp266 JSHandle<TaggedArray> storeKeyArray = factory->NewTaggedArray(keyNumbers); in HWTEST_F_L0() local
276 …NumberDictionary::GetAllKeys(thread, dictHandle, 1, storeKeyArray); // 1: store to the second posi… in HWTEST_F_L0()
280 EXPECT_EQ(storeKeyArray->Get(i), stringKey.GetTaggedValue()); in HWTEST_F_L0()
282 EXPECT_TRUE(storeKeyArray->Get(0).IsHole()); in HWTEST_F_L0()
Dtemplate_map_test.cpp302 …JSHandle<TaggedArray> storeKeyArray = factory->NewTaggedArray(55); // 55 : means the length of ar… in HWTEST_F_L0() local
303 templateMap->GetAllKeys(thread, 5, *storeKeyArray); // 5: means the index of array in HWTEST_F_L0()
307 EXPECT_EQ(templateMap->GetKey(i), storeKeyArray->Get(i + 5)); in HWTEST_F_L0()