Home
last modified time | relevance | path

Searched refs:elementKey (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/tests/
Djs_map_test.cpp135 JSHandle<JSTaggedValue> elementKey(thread, JSTaggedValue(1)); in HWTEST_F_L0() local
145 EXPECT_EQ(10, JSObject::GetProperty(thread, result0Handle, elementKey).GetValue()->GetInt()); in HWTEST_F_L0()
Djs_api_tree_set_test.cpp275 JSHandle<JSTaggedValue> elementKey(thread, JSTaggedValue(1)); in HWTEST_F_L0() local
283 EXPECT_EQ(i, JSObject::GetProperty(thread, result, elementKey).GetValue()->GetInt()); in HWTEST_F_L0()
Djs_api_hashset_test.cpp268 JSHandle<JSTaggedValue> elementKey(thread, JSTaggedValue(1)); in HWTEST_F_L0() local
276 … JSHandle<JSTaggedValue> tmpValue = JSObject::GetProperty(thread, result, elementKey).GetValue(); in HWTEST_F_L0()
Djs_api_tree_map_test.cpp304 JSHandle<JSTaggedValue> elementKey(thread, JSTaggedValue(1)); in HWTEST_F_L0() local
312 EXPECT_EQ(i + 1, JSObject::GetProperty(thread, result, elementKey).GetValue()->GetInt()); in HWTEST_F_L0()
Djs_api_hashmap_test.cpp303 JSHandle<JSTaggedValue> elementKey(thread, JSTaggedValue(1)); in HWTEST_F_L0() local
313 … JSHandle<JSTaggedValue> tmpValue = JSObject::GetProperty(thread, result, elementKey).GetValue(); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
Djs_serializer.cpp948 JSMutableHandle<JSTaggedValue> elementKey(thread_, JSTaggedValue::Undefined()); in WritePlainObject() local
950 elementKey.Update(keyVector[i]); in WritePlainObject()
951 if (!SerializeJSTaggedValue(elementKey)) { in WritePlainObject()
955 JSObject::OrdinaryGetOwnProperty(thread_, obj, elementKey, desc); in WritePlainObject()