| /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 285 map.set("test linkedlist intertor:", res) variable 327 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 293 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_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_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/test/typeinfer/automatedcases/ |
| D | typeInferenceReturnTypeCallback.ts | 26 map<D>(f: (t: C) => D): IList<D> { method in Nil 33 map<U>(f: (t: T) => U): IList<U> { method in Cons
|
| D | tooFewArgumentsInGenericFunctionTypedArgument.ts | 27 map<T, U, V>(c: Collection<T,U>, f: (x: T, y: U) => V): Collection<T, V>; method 28 map<T, U>(c: Collection<T,U>, f: (x: T, y: U) => any): Collection<any, any>; method
|
| D | callbacksDontShareTypes.ts | 27 map<T, U>(c: Collection<T>, f: (x: T) => U): Collection<U>; method 28 map<T>(c: Collection<T>, f: (x: T) => any): Collection<any>; method
|
| D | nonInferrableTypePropagation1.ts | 34 declare function map<T, R>(project: (value: T) => R): Op<T, R>; function
|
| D | performanceComparisonOfStructurallyIdenticalInterfacesWithGenericSignatures.ts | 40 map<D>(callback: (value: T) => D): InterfaceB<D>; method 61 public map<D>(callback: (value: T) => D): B<D> { method in A
|
| /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() 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() 102 bool JSAPITreeMap::Replace(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTa… in Replace()
|
| /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()
|
| /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/containers/ |
| D | containers_treemap.cpp | 50 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/test/typeinfer/automatedcases/moduleAugmentationDeclarationEmit2/ |
| D | map.ts | 33 map<U>(proj: (e:T) => U): Observable<U> method
|
| /arkcompiler/ets_runtime/test/typeinfer/automatedcases/moduleAugmentationExtendFileModule1/ |
| D | map.ts | 33 map<U>(proj: (e:T) => U): Observable<U> method
|
| /arkcompiler/ets_runtime/test/typeinfer/automatedcases/moduleAugmentationExtendFileModule2/ |
| D | map.ts | 33 map<U>(proj: (e:T) => U): Observable<U> method
|
| /arkcompiler/ets_runtime/test/typeinfer/automatedcases/moduleAugmentationDeclarationEmit1/ |
| D | map.ts | 33 map<U>(proj: (e:T) => U): Observable<U> method
|