/arkcompiler/ets_runtime/ecmascript/ |
H A D | global_index_map.cpp | 59 JSHandle<PointerToIndexDictionary> newDict = in InitGlobalConst() local 61 globalIndexMapHandle.Update(newDict); in InitGlobalConst() 84 JSHandle<PointerToIndexDictionary> newDict = in InitGlobalEnv() local 86 globalIndexMapHandle.Update(newDict); in InitGlobalEnv() 108 JSHandle<PointerToIndexDictionary> newDict = in InitBuiltinEntries() local 110 globalIndexMapHandle.Update(newDict); in InitBuiltinEntries()
|
H A D | js_object.cpp | 205 JSHandle<NameDictionary> newDict = NameDictionary::PutIfAbsent(thread, dict, keyHandle, valueHandle, attr); in TransitionToDictionary() local 206 dict.Update(newDict); in TransitionToDictionary() 241 JSHandle<NumberDictionary> newDict = NumberDictionary::PutIfAbsent(thread, dict, key, valueHandle, attr); in ElementsToDictionary() local 242 dict.Update(newDict); in ElementsToDictionary() 355 JSHandle<ecmascript::NameDictionary> newDict = in SetSProperties() local 357 dict.Update(newDict); in SetSProperties() 425 JSHandle<NumberDictionary> newDict = in AddElementInternal() local 427 receiver->SetElements(thread, newDict); in AddElementInternal() 461 JSHandle<GlobalDictionary> newDict = GlobalDictionary::Remove(thread, dictHandle, index); in DeletePropertyInternal() local 462 obj->SetProperties(thread, newDict); in DeletePropertyInternal() 471 JSHandle<NameDictionary> newDict = NameDictionary::Remove(thread, dictHandle, entry); DeletePropertyInternal() local 477 JSHandle<NameDictionary> newDict = NameDictionary::Remove(thread, dictHandle, index); DeletePropertyInternal() local 2750 JSHandle<NameDictionary> newDict = NameDictionary::PutIfAbsent(thread, dict, keyHandle, valueHandle, attr); CreateObjectFromProperties() local [all...] |
H A D | js_hclass.cpp | 1634 JSHandle<NameDictionary> newDict = NameDictionary::Put(thread, dict, key, value, attr); in CreateSDictLayout() local 1635 dict.Update(newDict); in CreateSDictLayout() 1644 JSHandle<NameDictionary> newDict = NameDictionary::Put( in CreateSDictLayout() local 1646 dict.Update(newDict); in CreateSDictLayout() 1652 JSHandle<NameDictionary> newDict = in CreateSDictLayout() local 1654 dict.Update(newDict); in CreateSDictLayout()
|
H A D | js_array.cpp | 225 JSHandle<NumberDictionary> newDict = NumberDictionary::Remove(thread, dictHandle, entry); in SetCapacity() local 226 array->SetElements(thread, newDict); in SetCapacity()
|
H A D | object_fast_operator-inl.h | 924 JSHandle<NameDictionary> newDict = in AddPropertyByName() local 926 objHandle->SetProperties(thread, newDict); in AddPropertyByName() 957 JSHandle<NameDictionary> newDict = in AddPropertyByName() local 959 objHandle->SetProperties(thread, newDict); in AddPropertyByName()
|
H A D | object_operator.cpp | 938 JSHandle<NumberDictionary> newDict = NumberDictionary::Remove(thread_, dictHandle, GetIndex()); in DeleteElementInHolder() local 939 obj->SetElements(thread_, newDict); in DeleteElementInHolder()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | global_dictionary_test.cpp | 93 JSHandle<GlobalDictionary> newDict = in HWTEST_F_L0() local 99 EXPECT_TRUE(newDict->GetBox(0) != nullptr); in HWTEST_F_L0() 100 EXPECT_EQ(newDict->GetValue(0).GetInt(), 123); in HWTEST_F_L0() 101 EXPECT_TRUE(newDict->GetBox(1) != nullptr); in HWTEST_F_L0() 102 EXPECT_EQ(newDict->GetValue(1).GetInt(), 100); in HWTEST_F_L0()
|
H A D | tagged_dictionary_test.cpp | 153 JSHandle<NameDictionary> newDict = NameDictionary::PutIfAbsent(thread, dictHandle, key, value, metaData); in HWTEST_F_L0() local 154 dictHandle.Update(newDict.GetTaggedValue()); in HWTEST_F_L0() 306 JSHandle<NumberDictionary> newDict = in HWTEST_F_L0() local 308 dictHandle.Update(newDict.GetTaggedValue()); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
H A D | class_info_extractor.cpp | 642 JSHandle<NameDictionary> newDict = NameDictionary::PutIfAbsent(thread, dict, propKey, propValue, attributes); in BuildDictionaryProperties() local 643 dict.Update(newDict); in BuildDictionaryProperties() 856 JSHandle<NameDictionary> newDict = in FilterDuplicatedKeys() local 858 dict.Update(newDict); in FilterDuplicatedKeys() 899 JSHandle<NameDictionary> newDict = in BuildSendableDictionaryProperties() local 901 dict.Update(newDict); in BuildSendableDictionaryProperties() 910 JSHandle<NameDictionary> newDict = NameDictionary::PutIfAbsent(thread, dict, propKey, propValue, attributes); in BuildSendableDictionaryProperties() local 911 dict.Update(newDict); in BuildSendableDictionaryProperties() 942 JSHandle<NameDictionary> newDict = NameDictionary::Put(thread, dict, key, value, attributes); in AddFieldTypeToDict() local 943 dict.Update(newDict); in AddFieldTypeToDict() [all...] |
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | json_parser.cpp | 398 JSHandle<NameDictionary> newDict = NameDictionary::PutIfAbsent(thread_, dict, propKey, in CreateSJsonObject() local 400 dict.Update(newDict); in CreateSJsonObject() 481 JSHandle<NameDictionary> newDict = NameDictionary::PutIfAbsent(thread_, dict, propKey, in CreateSJsonMap() local 483 dict.Update(newDict); in CreateSJsonMap()
|