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.cpp243 JSHandle<TaggedArray> storeKeyArray = factory->NewTaggedArray(keyNumbers); in HWTEST_F_L0() local
253 …NumberDictionary::GetAllKeys(thread, dictHandle, 1, storeKeyArray); // 1: store to the second posi… in HWTEST_F_L0()
257 EXPECT_EQ(storeKeyArray->Get(i), stringKey.GetTaggedValue()); in HWTEST_F_L0()
259 EXPECT_TRUE(storeKeyArray->Get(0).IsHole()); in HWTEST_F_L0()
Dtemplate_map_test.cpp278 …JSHandle<TaggedArray> storeKeyArray = factory->NewTaggedArray(55); // 55 : means the length of ar… in HWTEST_F_L0() local
279 templateMap->GetAllKeys(thread, 5, *storeKeyArray); // 5: means the index of array in HWTEST_F_L0()
283 EXPECT_EQ(templateMap->GetKey(i), storeKeyArray->Get(i + 5)); in HWTEST_F_L0()