Searched refs:elementKey (Results 1 – 6 of 6) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_map_test.cpp | 135 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()
|
D | js_api_tree_set_test.cpp | 275 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()
|
D | js_api_hashset_test.cpp | 268 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()
|
D | js_api_tree_map_test.cpp | 304 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()
|
D | js_api_hashmap_test.cpp | 303 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/ |
D | js_serializer.cpp | 948 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()
|