Home
last modified time | relevance | path

Searched refs:ForEach (Results 1 – 25 of 100) sorted by relevance

1234

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/spec/annotations/
Dannotation_@Provide.ets30 ForEach(this.data.items, item => {
57 ForEach(this.data.items, item => {
74 ForEach(this.data.items, item => {
103 ForEach(this.data.items, item => {
Dannotation_@Link_2.ets48 ForEach(this.arr,
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_set.h38 V("forEach", ForEach, 1, SetForEach) \
60 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
Dbuiltins_map.h34 V("forEach", ForEach, 1, MapForEach) \
60 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/declgen_ets2ts/
Dlib1.expected50 function ForEach<T extends Object>(a: T[], cb: (e: T, idx: number) => void): void { return {} as an…
51 (ForEach as any) = (globalThis as any).Panda.getFunction('LETSGLOBAL;', 'ForEach');
52 export {ForEach};
53 exports.ForEach = ForEach;
Dmain.ts53 import { SumDouble, SumBoxedDouble, SumString, Identity, ForEach, ReplaceFirst } from './lib1';
88 ForEach(intArr, (e: number, idx: number) => {
92 ForEach(intStr, (e: string, idx: number) => {
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_collection_stub_builder.cpp119 void BuiltinsCollectionStubBuilder<CollectionType>::ForEach(Variable *result, Label *exit, Label *s… in ForEach() function in panda::ecmascript::kungfu::BuiltinsCollectionStubBuilder
140 res = linkedHashTableStubBuilder.ForEach(thisValue_, linkedTable, numArgs_); in ForEach()
143 res = linkedHashTableStubBuilder.ForEach(thisValue_, linkedTable, numArgs_); in ForEach()
153 template void BuiltinsCollectionStubBuilder<JSMap>::ForEach(Variable *result, Label *exit, Label *s…
154 template void BuiltinsCollectionStubBuilder<JSSet>::ForEach(Variable *result, Label *exit, Label *s…
/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_queue.h30 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
Dcontainers_stack.h32 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
Dcontainers_hashset.h34 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
Dcontainers_deque.h34 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
Dcontainers_hashmap.h32 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
Dcontainers_treeset.h51 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
Dcontainers_treemap.h54 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
Dcontainers_plainarray.h32 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
Dcontainers_list.h39 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
Dcontainers_lightweightset.h35 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
Dcontainers_lightweightmap.h44 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
Dcontainers_linked_list.h47 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
Dcontainers_arraylist.h48 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
Dcontainers_vector.h46 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h271 V(Array, ForEach) \
483 V(Map, ForEach) \
706 V(Set, ForEach) \
796 V(TypedArray, ForEach) \
844 V(ArrayList, ForEach) \
872 V(LightWeightMap, ForEach) \
889 V(LightWeightSet, ForEach) \
904 V(PlainArray, ForEach) \
923 V(HashMap, ForEach) \
940 V(HashSet, ForEach) \
[all …]
/arkcompiler/runtime_core/static_core/verification/value/tests/
Dvariables_test.cpp48 ForEach(vars.AllVariables(), [&count, &v1, &v2, &v4, &v5](auto v) { in TEST_F()
/arkcompiler/runtime_core/static_core/verification/util/tests/
Dlazy_test.cpp52 ForEach(ConstLazyFetch(testData), [&sum](int val) { sum += val; }); in TEST()
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp355 reinterpret_cast<uintptr_t>(BuiltinsSet::ForEach),
366 reinterpret_cast<uintptr_t>(BuiltinsMap::ForEach),
396 reinterpret_cast<uintptr_t>(BuiltinsArray::ForEach),
439 reinterpret_cast<uintptr_t>(BuiltinsTypedArray::ForEach),
754 reinterpret_cast<uintptr_t>(ArrayList::ForEach),
767 reinterpret_cast<uintptr_t>(HashMap::ForEach),
803 reinterpret_cast<uintptr_t>(LightWeightMap::ForEach),
821 reinterpret_cast<uintptr_t>(LightWeightSet::ForEach),
845 reinterpret_cast<uintptr_t>(TreeMap::ForEach),
862 reinterpret_cast<uintptr_t>(TreeSet::ForEach),
[all …]

1234