Home
last modified time | relevance | path

Searched defs:map (Results 1 – 25 of 184) sorted by relevance

12345678

/arkcompiler/ets_runtime/test/moduletest/container/
Dcontainer_linked_list.js27 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
285 map.set("test linkedlist intertor:", res) variable
327 function elements(value, key, map) { argument
Dcontainer_list.js27 let map = new Map(); variable
34 map.set("test list isEmpty2:", list.isEmpty() === false) variable
104 map.set("test list set:", res) variable
197 map.set("test list remove:", !res) variable
210 map.set("test list get 1:", proxy.get(1) === 1) variable
335 map.set("test list set:", res) variable
403 function elements(value, key, map) { argument
Dcontainer_stack.js29 let map = new Map(); variable
82 map.set("test stack Symbol.iterator:", res) variable
98 function elements(value, key, map) { argument
Dcontainer_plainarray.js26 let map = new Map(); variable
99 map.set("test plainarray Symbol.iterator:", res) variable
123 function elements(value, key, map) { argument
Dcontainer_treemap.js27 let map = new fastmap(); variable
71 function TestForEach(value, key, map) { argument
189 function elements(value, key, map) { argument
212 map = new fastmap(); variable
Dcontainer_arraylist.js29 let map = new Map(); variable
181 map.set("test arraylist replaceAllElements:", res) variable
225 function elements(value, key, map) { argument
Dcontainer_vector.js26 let map = new Map(); variable
220 map.set("test vector Symbol.iterator:", res) variable
293 function elements(value, key, map) { argument
Dcontainer_hashmap.js27 let map = new fastmap(); variable
72 function TestForEach(value, key, map) { argument
188 function elements(value, key, map) { argument
Dcontainer_hashset.js26 let map = new Map(); variable
158 function elements(value, key, map) { argument
Dcontainer_queue.js29 let map = new Map(); variable
81 function elements(value, key, map) { argument
Dcontainer_deque.js29 let map = new Map(); variable
99 function elements(value, key, map) { argument
Dcontainer_treeset.js26 let map = new Map(); variable
180 function elements(value, key, map) { argument
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_tree_map.cpp25 void JSAPITreeMap::Set(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTagged… in Set()
43 JSTaggedValue JSAPITreeMap::Get(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle… in Get()
68 JSTaggedValue JSAPITreeMap::Delete(JSThread *thread, const JSHandle<JSAPITreeMap> &map, in Delete()
83 bool JSAPITreeMap::HasKey(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTag… in HasKey()
95 void JSAPITreeMap::Clear(const JSThread *thread, const JSHandle<JSAPITreeMap> &map) in Clear()
106 bool JSAPITreeMap::Replace(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTa… in Replace()
/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_treemap.cpp50 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(obj); in TreeMapConstructor() local
93 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in Set() local
117 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in Get() local
139 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in Remove() local
162 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in HasKey() local
186 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in HasValue() local
208 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in GetFirstKey() local
229 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in GetLastKey() local
312 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in GetLowerKey() local
336 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in GetHigherKey() local
[all …]
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_map_test.cpp68 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/
Djs_map.cpp23 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()
Djs_map_iterator.cpp57 JSHandle<LinkedHashMap> map(iteratedMap); in NextInternal() local
97 LinkedHashMap *map = LinkedHashMap::Cast(iteratedMap.GetTaggedObject()); in Update() local
139 JSHandle<LinkedHashMap> map(iteratedMap); in MapIteratorToList() local
/arkcompiler/ets_runtime/test/moduletest/arraymap/
Darraymap.js23 function map() { function
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_map_test.cpp104 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
227 JSHandle<JSMap> map(thread, CreateBuiltinsMap(thread)); in HWTEST_F_L0() local
291 JSHandle<JSTaggedValue> map(thread, CreateBuiltinsMap(thread)); in HWTEST_F_L0() local
345 JSHandle<JSTaggedValue> map(thread, CreateBuiltinsMap(thread)); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_map.cpp44 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/ets_frontend/es2panda/lexer/
DkeywordsUtil.cpp206 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/
Dreg_alloc_graph_coloring.cpp111 …oring::IndexVector RegAllocGraphColoring::PrecolorIG(InterferenceGraph *ig, const RegisterMap &map) in PrecolorIG()
238 …phColoring::AllocateRegisters(InterferenceGraph *ig, WorkingRanges *ranges, const RegisterMap &map) in AllocateRegisters()
268 void RegAllocGraphColoring::Remap(const InterferenceGraph &ig, const RegisterMap &map) in Remap()
297 RegisterMap map(gr->GetLocalAllocator()); in Allocate() local
376 void RegAllocGraphColoring::InitMap(RegisterMap *map, bool is_vector) in InitMap()
/arkcompiler/ets_frontend/ets2panda/lexer/
DkeywordsUtil.cpp202 const auto map = kws->KeywordMap(cp); in ScanIdentifierStart() local
252 void KeywordsUtil::ScanIdContinueMaybeKeyword(const Keywords *kws, Span<const KeywordString> map) in ScanIdContinueMaybeKeyword()
/arkcompiler/ets_runtime/test/fuzztest/containerstreemapgetlength_fuzzer/
Dcontainerstreemapgetlength_fuzzer.cpp77 JSHandle<JSAPITreeMap> map(thread, result); in CreateJSAPITreeMap() local
108 JSHandle<JSAPITreeMap> map = CreateJSAPITreeMap(thread); in ContainersTreeMapGetLengthFuzzTest() local
/arkcompiler/ets_runtime/test/fuzztest/containerstreemapsetall_fuzzer/
Dcontainerstreemapsetall_fuzzer.cpp77 JSHandle<JSAPITreeMap> map(thread, result); in CreateJSAPITreeMap() local
108 JSHandle<JSAPITreeMap> map = CreateJSAPITreeMap(thread); in ContainersTreeMapSetAllFuzzTest() local

12345678