/ohos5.0/commonlibrary/ets_utils/js_util_module/container/list/ |
H A D | js_list.ts | 263 replaceAllElements(callbackfn: (value: T, index?: number, list?: List<T>) => T, 266 errorUtil.checkTypeError('callbackfn', 'callable', callbackfn); 271 this.getNode(index).element = callbackfn.call(thisArg, this.head.element, index, this); 275 this.getNode(++index).element = callbackfn.call(thisArg, current.element, index, this); 384 forEach(callbackfn: (value: T, index?: number, list?: List<T>) => void, 387 errorUtil.checkTypeError('callbackfn', 'callable', callbackfn); 392 callbackfn.call(thisArg, this.head.element, index, this); 396 callbackfn.call(thisArg, current.element, ++index, this);
|
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/arraylist/ |
H A D | js_arraylist.ts | 198 replaceAllElements(callbackfn: (value: T, index?: number, arrList?: ArrayList<T>) => T, 201 errorUtil.checkTypeError('callbackfn', 'callable', callbackfn); 203 this[i] = callbackfn.call(thisArg, this[i], i, this); 206 forEach(callbackfn: (value: T, index?: number, arrList?: ArrayList<T>) => void, 209 errorUtil.checkTypeError('callbackfn', 'callable', callbackfn); 211 callbackfn.call(thisArg, this[i], i, this);
|
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/hashset/ |
H A D | js_hashset.ts | 90 forEach(callbackfn: (value?: T, key?: T, set?: HashSet<T>) => void, 93 errorUtil.checkTypeError('callbackfn', 'callable', callbackfn); 97 callbackfn.call(thisArg, tagetArray[i].key, tagetArray[i].key, this);
|
/ohos5.0/docs/zh-cn/application-dev/arkts-utils/ |
H A D | arkts-collections-introduction.md | 90 | forEach(callbackfn: (value: T, index: number, array: T[]) => void, thisArg?: any): void | forE… 91 | map<U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any): U[] | map… 93 | reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T)… 94 | reduce<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[])… 129 | forEach(callbackfn: (value: number, index: number, array: Int8Array) => void, thisArg?: any): … 132 | map(callbackfn: (value: number, index: number, array: Int8Array) => number, thisArg?: any): In… 133 | reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Int… 134 | reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Int… 135 | reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array:… 162 | forEach(callbackfn: (value: V, key: K, map: Map<K, V>) => void, thisArg?: any): void | f… [all …]
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.1-Release/ |
H A D | js-apidiff-compiler-and-runtime.md | 61 | ohos.util.Vector | Vector | forEach(callbackfn: (value: T, index?: number, vector?: Vector\<T>) =… 62 | ohos.util.Vector | Vector | replaceAllElements(callbackfn: (value: T, index?: number, vector?: Ve… 82 | ohos.util.TreeSet | TreeSet | forEach(callbackfn: (value?: T, key?: T, set?: TreeSet\<T>) => void… 98 | ohos.util.TreeMap | TreeMap | forEach(callbackfn: (value?: V, key?: K, map?: TreeMap\<K, V>) => v… 117 | ohos.util.Stack | Stack | forEach(callbackfn: (value: T, index?: number, stack?: Stack\<T>) => vo… 126 | ohos.util.Queue | Queue | forEach(callbackfn: (value: T, index?: number, Queue?: Queue\<T>) => vo… 154 | ohos.util.List | List | replaceAllElements(callbackfn: (value: T, index?: number, list?: List\<T>… 158 | ohos.util.List | List | forEach(callbackfn: (value: T, index?: number, List?: List\<T>) => void, … 243 | ohos.util.HashSet | HashSet | forEach(callbackfn: (value?: T, key?: T, set?: HashSet\<T>) => void… 253 | ohos.util.HashMap | HashMap | forEach(callbackfn: (value?: V, key?: K, map?: HashMap\<K, V>) => v… [all …]
|
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/queue/ |
H A D | js_queue.ts | 131 forEach(callbackfn: (value: T, index?: number, queue?: Queue<T>) => void, 134 errorUtil.checkTypeError('callbackfn', 'callable', callbackfn); 141 callbackfn.call(thisArg, this[i], k, this);
|
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/stack/ |
H A D | js_stack.ts | 140 forEach(callbackfn: (value: T, index?: number, stack?: Stack<T>) => void, 143 errorUtil.checkTypeError('callbackfn', 'callable', callbackfn); 145 callbackfn.call(thisArg, this[i], i, this);
|
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/hashmap/ |
H A D | js_hashmap.ts | 140 forEach(callbackfn: (value?: V, key?: K, map?: HashMap<K, V>) => void, 143 errorUtil.checkTypeError('callbackfn', 'callable', callbackfn); 147 callbackfn.call(thisArg, tagetArray[i].value, tagetArray[i].key, this);
|
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/deque/ |
H A D | js_deque.ts | 170 forEach(callbackfn: (value: T, index?: number, deque?: Deque<T>) => void, 173 errorUtil.checkTypeError('callbackfn', 'callable', callbackfn); 177 callbackfn.call(thisArg, this[i], k, this);
|
/ohos5.0/docs/en/release-notes/api-diff/v3.1-Release/ |
H A D | js-apidiff-compiler-and-runtime.md | 61 | ohos.util.Vector | Vector | forEach(callbackfn: (value: T, index?: number, vector?: Vector\<T>) =… 62 | ohos.util.Vector | Vector | replaceAllElements(callbackfn: (value: T, index?: number, vector?: Ve… 82 | ohos.util.TreeSet | TreeSet | forEach(callbackfn: (value?: T, key?: T, set?: TreeSet\<T>) => void… 98 | ohos.util.TreeMap | TreeMap | forEach(callbackfn: (value?: V, key?: K, map?: TreeMap\<K, V>) => v… 117 | ohos.util.Stack | Stack | forEach(callbackfn: (value: T, index?: number, stack?: Stack\<T>) => vo… 126 | ohos.util.Queue | Queue | forEach(callbackfn: (value: T, index?: number, Queue?: Queue\<T>) => vo… 154 | ohos.util.List | List | replaceAllElements(callbackfn: (value: T, index?: number, list?: List\<T>… 158 | ohos.util.List | List | forEach(callbackfn: (value: T, index?: number, List?: List\<T>) => void, … 243 | ohos.util.HashSet | HashSet | forEach(callbackfn: (value?: T, key?: T, set?: HashSet\<T>) => void… 253 | ohos.util.HashMap | HashMap | forEach(callbackfn: (value?: V, key?: K, map?: HashMap\<K, V>) => v… [all …]
|
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/vector/ |
H A D | js_vector.ts | 241 replaceAllElements(callbackfn: (value: T, index?: number, vector?: Vector<T>) => T, 244 this[i] = callbackfn.call(thisArg, this[i], i, this); 247 forEach(callbackfn: (value: T, index?: number, vector?: Vector<T>) => void, 250 callbackfn.call(thisArg, this[i], i, this);
|
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/lightweightset/ |
H A D | js_lightweightset.ts | 157 forEach(callbackfn: (value?: T, key?: T, set?: LightWeightSet<T>) => void, 160 errorUtil.checkTypeError('callbackfn', 'callable', callbackfn); 162 callbackfn.call(thisArg, this.members.keys[i], this.members.keys[i], this);
|
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/plainarray/ |
H A D | js_plainarray.ts | 163 forEach(callbackfn: (value: T, index?: number, PlainArray?: PlainArray<T>) => void, 166 errorUtil.checkTypeError('callbackfn', 'callable', callbackfn); 168 callbackfn.call(thisArg, this.members.values[i], this.members.keys[i]);
|
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/treeset/ |
H A D | js_treeset.ts | 178 forEach(callbackfn: (value?: T, key?: T, set?: TreeSet<T>) => void, 181 errorUtil.checkTypeError('callbackfn', 'callable', callbackfn); 184 callbackfn.call(thisArg, tagetArray[i].value as T, tagetArray[i].key);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/puv2_common/ |
H A D | puv2_updatefunc.ts | 120 …public forEach(callbackfn: (value: UpdateFuncRecord, key: number, map: Map<number, UpdateFuncRecor… 121 this.map_.forEach(callbackfn);
|
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/treemap/ |
H A D | js_treemap.ts | 196 forEach(callbackfn: (value?: V, key?: K, map?: TreeMap<K, V>) => void, 199 errorUtil.checkTypeError('callbackfn', 'callable', callbackfn); 201 …callbackfn.call(thisArg, this.constitute.keyValueArray[i].value as V, this.constitute.keyValueArra…
|
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/lightweightmap/ |
H A D | js_lightweightmap.ts | 204 forEach(callbackfn: (value?: V, key?: K, map?: LightWeightMap<K, V>) => void, 207 errorUtil.checkTypeError('callbackfn', 'callable', callbackfn); 209 callbackfn.call(thisArg, this.members.values[i], this.members.keys[i], this);
|
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/linkedlist/ |
H A D | js_linkedlist.ts | 397 forEach(callbackfn: (value: T, index?: number, linkedList?: LinkedList<T>) => void, 400 errorUtil.checkTypeError('callbackfn', 'callable', callbackfn); 405 callbackfn.call(thisArg, this.head.element, index, this); 409 callbackfn.call(thisArg, current.element, ++index, this);
|
/ohos5.0/docs/en/application-dev/arkts-utils/ |
H A D | arkts-collections-introduction.md | 90 | forEach(callbackfn: (value: T, index: number, array: T[]) => void, thisArg?: any): void | forE… 91 | map<U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any): U[] | map… 93 | reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T)… 94 | reduce<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[])… 129 | forEach(callbackfn: (value: number, index: number, array: Int8Array) => void, thisArg?: any): … 132 | map(callbackfn: (value: number, index: number, array: Int8Array) => number, thisArg?: any): In… 133 | reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Int… 134 | reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Int… 135 | reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array:… 162 | forEach(callbackfn: (value: V, key: K, map: Map<K, V>) => void, thisArg?: any): void | f… [all …]
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkts/ |
H A D | js-apis-queue.md | 195 | thisArg | Object | 否 | callbackfn被调用时用作this值,默认值为当前实例对象。 | 197 callbackfn的参数说明:
|
H A D | js-apis-vector.md | 311 | thisArg | Object | 否 | callbackfn被调用时用作this值,默认值为当前实例对象。 | 313 callbackfn的参数说明: 349 | thisArg | Object | 否 | callbackfn被调用时用作this值,默认值为当前实例对象。 | 351 callbackfn的参数说明:
|
H A D | js-apis-stack.md | 233 | thisArg | Object | 否 | callbackfn被调用时用作this值,默认值为当前实例对象。 | 235 callbackfn的参数说明:
|
H A D | js-apis-list.md | 465 | thisArg | Object | 否 | callbackfn被调用时用作this值,默认值为当前实例对象。 | 467 callbackfn的参数说明: 514 | thisArg | Object | 否 | callbackfn被调用时用作this值,默认值为当前实例对象。 | 516 callbackfn的参数说明:
|
H A D | js-apis-arraylist.md | 411 | thisArg | Object | 否 | callbackfn被调用时用作this值,默认值为当前实例对象。 | 413 callbackfn的参数说明: 460 | thisArg | Object | 否 | callbackfn被调用时用作this值,默认值为当前实例对象。 | 462 callbackfn的参数说明:
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_modifier/src/ |
H A D | modifier_utilities.ts | 212 public forEach(callbackfn: (value: AttributeModifierWithKey, key: Symbol, 214 this.map_.forEach(callbackfn, thisArg);
|