| /arkcompiler/ets_runtime/test/moduletest/container/ |
| D | container_list.js | 27 let map = new Map(); variable 34 map.set("test list isEmpty2:", list.isEmpty() === false) variable 104 map.set("test list set:", res) variable 181 map.set("test list remove:", !res) variable 193 map.set("test list get 1:", proxy.get(1) === 1) variable 262 map.set("test list set:", res) variable 330 function elements(value, key, map) { argument
|
| D | container_linked_list.js | 27 let map = new Map(); variable 107 map.set("test linkedlist intertor:", res) variable 156 map.set("test linkedlist convertToArray:", res) variable 230 map.set("test linkedlist removeFirst:", removefirstres1 === 1111) variable 284 map.set("test linkedlist intertor:", res) variable 326 function elements(value, key, map) { argument
|
| D | container_stack.js | 29 let map = new Map(); variable 82 map.set("test stack Symbol.iterator:", res) variable 98 function elements(value, key, map) { argument
|
| D | container_plainarray.js | 26 let map = new Map(); variable 99 map.set("test plainarray Symbol.iterator:", res) variable 123 function elements(value, key, map) { argument
|
| D | container_arraylist.js | 29 let map = new Map(); variable 181 map.set("test arraylist replaceAllElements:", res) variable 225 function elements(value, key, map) { argument
|
| D | container_vector.js | 26 let map = new Map(); variable 220 map.set("test vector Symbol.iterator:", res) variable 279 function elements(value, key, map) { argument
|
| D | container_treemap.js | 27 let map = new fastmap(); variable 71 function TestForEach(value, key, map) { argument 176 function elements(value, key, map) { argument
|
| D | container_hashmap.js | 27 let map = new fastmap(); variable 72 function TestForEach(value, key, map) { argument 172 function elements(value, key, map) { argument
|
| D | container_hashset.js | 26 let map = new Map(); variable 142 function elements(value, key, map) { argument
|
| D | container_queue.js | 29 let map = new Map(); variable 81 function elements(value, key, map) { argument
|
| D | container_deque.js | 29 let map = new Map(); variable 99 function elements(value, key, map) { argument
|
| D | container_treeset.js | 26 let map = new Map(); variable 167 function elements(value, key, map) { argument
|
| /arkcompiler/ets_runtime/ecmascript/js_api/ |
| D | js_api_tree_map.cpp | 25 void JSAPITreeMap::Set(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTagged… in Set() 42 JSTaggedValue JSAPITreeMap::Get(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle… in Get() 67 JSTaggedValue JSAPITreeMap::Delete(JSThread *thread, const JSHandle<JSAPITreeMap> &map, in Delete() 82 bool JSAPITreeMap::HasKey(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTag… in HasKey() 94 void JSAPITreeMap::Clear(const JSThread *thread, const JSHandle<JSAPITreeMap> &map) in Clear() 101 bool JSAPITreeMap::Replace(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTa… in Replace()
|
| /arkcompiler/ets_runtime/ecmascript/containers/ |
| D | containers_treemap.cpp | 50 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(obj); in TreeMapConstructor() local 92 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in Set() local 116 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in Get() local 138 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in Remove() local 161 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in HasKey() local 185 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in HasValue() local 207 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in GetFirstKey() local 228 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in GetLastKey() local 310 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in GetLowerKey() local 334 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in GetHigherKey() local [all …]
|
| /arkcompiler/ets_runtime/ecmascript/tests/ |
| D | js_map_test.cpp | 68 JSHandle<JSMap> map = in CreateMap() local 78 JSMap *map = CreateMap(); in HWTEST_F_L0() local 86 JSHandle<JSMap> map(thread, CreateMap()); in HWTEST_F_L0() local 98 JSHandle<JSMap> map(thread, CreateMap()); in HWTEST_F_L0() local 123 JSHandle<JSMap> map(thread, CreateMap()); in HWTEST_F_L0() local
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | js_map.cpp | 23 void JSMap::Set(JSThread *thread, const JSHandle<JSMap> &map, const JSHandle<JSTaggedValue> &key, in Set() 35 bool JSMap::Delete(const JSThread *thread, const JSHandle<JSMap> &map, const JSHandle<JSTaggedValue… in Delete() 46 void JSMap::Clear(const JSThread *thread, const JSHandle<JSMap> &map) in Clear()
|
| D | js_map_iterator.cpp | 52 JSHandle<LinkedHashMap> map(iteratedMap); in Next() local 92 LinkedHashMap *map = LinkedHashMap::Cast(iteratedMap.GetTaggedObject()); in Update() local
|
| D | js_weak_container.cpp | 23 void JSWeakMap::Set(JSThread *thread, const JSHandle<JSWeakMap> &map, const JSHandle<JSTaggedValue>… in Set() 36 bool JSWeakMap::Delete(JSThread *thread, const JSHandle<JSWeakMap> &map, const JSHandle<JSTaggedVal… in Delete()
|
| /arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
| D | builtins_map_test.cpp | 104 JSHandle<JSMap> map(thread, CreateBuiltinsMap(thread)); in HWTEST_F_L0() local 145 JSHandle<JSMap> map(thread, CreateBuiltinsMap(thread)); in HWTEST_F_L0() local 188 JSHandle<JSMap> map(thread, CreateBuiltinsMap(thread)); in HWTEST_F_L0() local 228 JSHandle<JSMap> map(thread, CreateBuiltinsMap(thread)); in HWTEST_F_L0() local 292 JSHandle<JSTaggedValue> map(thread, CreateBuiltinsMap(thread)); in HWTEST_F_L0() local 346 JSHandle<JSTaggedValue> map(thread, CreateBuiltinsMap(thread)); in HWTEST_F_L0() local
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_map.cpp | 44 JSHandle<JSMap> map = JSHandle<JSMap>::Cast(obj); in MapConstructor() local 84 JSHandle<JSMap> map(self); in Set() local 102 JSHandle<JSMap> map(self); in Clear() local 119 JSHandle<JSMap> map(self); in Delete() local 170 JSHandle<JSMap> map(self); in ForEach() local
|
| /arkcompiler/runtime_core/verification/cflow/tests/ |
| D | instructions_map_test.cpp | 29 InstructionsMap map {&code[5], &code[147]}; in TEST_F() local
|
| /arkcompiler/ets_frontend/es2panda/lexer/ |
| D | keywordsUtil.cpp | 206 const auto map = KeywordsMap::Map(cp); in ScanIdentifierStart() local 256 void KeywordsUtil::ScanIdContinueMaybeKeyword(Span<const KeywordString> map) in ScanIdContinueMaybeKeyword()
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/ |
| D | reg_alloc_graph_coloring.cpp | 112 …oring::IndexVector RegAllocGraphColoring::PrecolorIG(InterferenceGraph *ig, const RegisterMap &map) in PrecolorIG() 239 …phColoring::AllocateRegisters(InterferenceGraph *ig, WorkingRanges *ranges, const RegisterMap &map) in AllocateRegisters() 269 void RegAllocGraphColoring::Remap(const InterferenceGraph &ig, const RegisterMap &map) in Remap() 298 RegisterMap map(gr->GetLocalAllocator()); in Allocate() local 377 void RegAllocGraphColoring::InitMap(RegisterMap *map, bool is_vector) in InitMap()
|
| /arkcompiler/ets_runtime/test/moduletest/linkedhashtable/ |
| D | linkedhashtable.js | 22 const map = new Map([[800000005, 100]]); constant
|
| /arkcompiler/ets_runtime/test/fuzztest/containerstreemapremove_fuzzer/ |
| D | containerstreemapremove_fuzzer.cpp | 77 JSHandle<JSAPITreeMap> map(thread, result); in CreateJSAPITreeMap() local 108 JSHandle<JSAPITreeMap> map = CreateJSAPITreeMap(thread); in ContainersTreeMapRemoveFuzzTest() local
|