Home
last modified time | relevance | path

Searched refs:ForEach (Results 1 - 25 of 102) sorted by relevance

12345

/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_set.h38 V("forEach", ForEach, 1, SetForEach) \
60 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dbuiltins_map.h34 V("forEach", ForEach, 1, MapForEach) \
60 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dbuiltins_shared_map.h34 V("forEach", ForEach, 1, MapForEach) \
54 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dbuiltins_shared_set.h38 V("forEach", ForEach, 1, SetForEach) \
53 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
H A Dbuiltins_call_signature.h103 V(ForEach, Array, Undefined()) \
130 V(ForEach, Set, Undefined()) \
140 V(ForEach, Map, Undefined()) \
204 V(ForEach, ArrayList, ContainersCommonFuncCall, ARRAYLIST_FOREACH, JS_POINTER) \
205 V(ForEach, Deque, DequeCommonFuncCall, DEQUE_FOREACH, JS_POINTER) \
206 V(ForEach, HashMap, ContainersHashCall, HASHMAP_FOREACH, JS_POINTER) \
207 V(ForEach, HashSet, ContainersHashCall, HASHSET_FOREACH, JS_POINTER) \
208 V(ForEach, LightWeightMap, ContainersLightWeightCall, LIGHTWEIGHTMAP_FOREACH, JS_POINTER) \
209 V(ForEach, LightWeightSet, ContainersLightWeightCall, LIGHTWEIGHTSET_FOREACH, JS_POINTER) \
210 V(ForEach, LinkedLis
[all...]
H A Dbuiltins_collection_stub_builder.cpp118 void BuiltinsCollectionStubBuilder<CollectionType>::ForEach(Variable *result, Label *exit, Label *slowPath) in ForEach() function in panda::ecmascript::kungfu::BuiltinsCollectionStubBuilder
140 res = linkedHashTableStubBuilder.ForEach(thisValue_, linkedTable, callbackFnHandle, thisArg); in ForEach()
143 res = linkedHashTableStubBuilder.ForEach(thisValue_, linkedTable, callbackFnHandle, thisArg); in ForEach()
153 template void BuiltinsCollectionStubBuilder<JSMap>::ForEach(Variable *result, Label *exit, Label *slowPath);
154 template void BuiltinsCollectionStubBuilder<JSSet>::ForEach(Variable *result, Label *exit, Label *slowPath);
/arkcompiler/ets_runtime/ecmascript/
H A Druntime_call_id.h274 V(Array, ForEach) \
314 V(SharedArray, ForEach) \
542 V(Map, ForEach) \
555 V(SharedMap, ForEach) \
778 V(Set, ForEach) \
788 V(SharedSet, ForEach) \
880 V(TypedArray, ForEach) \
928 V(SharedTypedArray, ForEach) \
972 V(ArrayList, ForEach) \
1015 V(LightWeightMap, ForEach) \
[all...]
/arkcompiler/ets_runtime/ecmascript/containers/
H A Dcontainers_queue.h30 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dcontainers_hashset.h35 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dcontainers_deque.h34 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dcontainers_stack.h32 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dcontainers_hashmap.h33 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dcontainers_treeset.h51 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dcontainers_arraylist.h48 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dcontainers_lightweightmap.h44 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dcontainers_linked_list.h47 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dcontainers_lightweightset.h35 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dcontainers_plainarray.h32 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dcontainers_list.h39 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dcontainers_treemap.h54 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dcontainers_vector.h46 static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
H A Dcontainers_private.cpp309 SetFrozenFunction(thread, prototype, "forEach", ContainersArrayList::ForEach, FuncLength::TWO, in InitializeArrayList()
382 SetFrozenFunction(thread, funcPrototype, "forEach", ContainersLightWeightMap::ForEach, FuncLength::ONE, in InitializeLightWeightMap()
444 SetFrozenFunction(thread, funcPrototype, "forEach", ContainersLightWeightSet::ForEach, FuncLength::ONE, in InitializeLightWeightSet()
517 SetFrozenFunction(thread, mapFuncPrototype, "forEach", ContainersTreeMap::ForEach, FuncLength::ONE); in InitializeTreeMap()
592 SetFrozenFunction(thread, setFuncPrototype, "forEach", ContainersTreeSet::ForEach, FuncLength::ONE); in InitializeTreeSet()
660 SetFrozenFunction(thread, plainArrayFuncPrototype, "forEach", ContainersPlainArray::ForEach, FuncLength::ONE, in InitializePlainArray()
739 SetFrozenFunction(thread, stackFuncPrototype, "forEach", ContainersStack::ForEach, FuncLength::ONE, in InitializeStack()
806 SetFrozenFunction(thread, prototype, "forEach", ContainersVector::ForEach, FuncLength::TWO, in InitializeVector()
941 SetFrozenFunction(thread, queueFuncPrototype, "forEach", ContainersQueue::ForEach, FuncLength::TWO, in InitializeQueue()
999 SetFrozenFunction(thread, dequeFuncPrototype, "forEach", ContainersDeque::ForEach, FuncLengt in InitializeDeque()
[all...]
/arkcompiler/runtime_core/static_core/verification/value/tests/
H A Dvariables_test.cpp48 ForEach(vars.AllVariables(), [&count, &v1, &v2, &v4, &v5](auto v) { in TEST_F()
/arkcompiler/runtime_core/static_core/verification/util/tests/
H A Dlazy_test.cpp52 ForEach(ConstLazyFetch(testData), [&sum](int val) { sum += val; }); in TEST()
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
H A Dsnapshot_processor.cpp329 reinterpret_cast<uintptr_t>(BuiltinsSet::ForEach),
340 reinterpret_cast<uintptr_t>(BuiltinsMap::ForEach),
370 reinterpret_cast<uintptr_t>(BuiltinsArray::ForEach),
412 reinterpret_cast<uintptr_t>(BuiltinsTypedArray::ForEach),
734 reinterpret_cast<uintptr_t>(ArrayList::ForEach),
747 reinterpret_cast<uintptr_t>(HashMap::ForEach),
783 reinterpret_cast<uintptr_t>(LightWeightMap::ForEach),
801 reinterpret_cast<uintptr_t>(LightWeightSet::ForEach),
825 reinterpret_cast<uintptr_t>(TreeMap::ForEach),
842 reinterpret_cast<uintptr_t>(TreeSet::ForEach),
[all...]

Completed in 10 milliseconds

12345