Home
last modified time | relevance | path

Searched refs:HashSet (Results 1 – 23 of 23) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_hashset.cpp33 BUILTINS_API_TRACE(thread, HashSet, Constructor); in HashSetConstructor()
60 BUILTINS_API_TRACE(thread, HashSet, Values); in Values()
80 BUILTINS_API_TRACE(thread, HashSet, Entries); in Entries()
101 BUILTINS_API_TRACE(thread, HashSet, Add); in Add()
126 BUILTINS_API_TRACE(thread, HashSet, Remove); in Remove()
149 BUILTINS_API_TRACE(thread, HashSet, Has); in Has()
171 BUILTINS_API_TRACE(thread, HashSet, Clear); in Clear()
193 BUILTINS_API_TRACE(thread, HashSet, GetLength); in GetLength()
215 BUILTINS_API_TRACE(thread, HashSet, IsEmpty); in IsEmpty()
236 BUILTINS_API_TRACE(thread, HashSet, ForEach); in ForEach()
Dcontainers_private.h35 HashSet, enumerator
Dcontainers_private.cpp140 case ContainerTag::HashSet: { in Load()
/arkcompiler/ets_runtime/test/fuzztest/containersprivatehashset_fuzzer/
Dcontainersprivatehashset_fuzzer.cpp35 …ontainersPrivateFuzzTestHelper::ContainersPrivateCommonFuzzTest(data, size, ContainerTag::HashSet); in ContainersPrivateHashSetFuzzTest()
/arkcompiler/ets_runtime/test/moduletest/container/
Dexpect_output.txt18 Test HashSet success!!!
Dcontainer_hashset.js24 fastset = ArkPrivate.Load(ArkPrivate.HashSet);
/arkcompiler/toolchain/tooling/test/testcases/js/
Dcontainer.js75 var HashSet = ArkPrivate.Load(ArkPrivate.HashSet);
76 let hashSet = new HashSet();
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h904 V(HashSet, Constructor) \
905 V(HashSet, IsEmpty) \
906 V(HashSet, Has) \
907 V(HashSet, Add) \
908 V(HashSet, Remove) \
909 V(HashSet, Clear) \
910 V(HashSet, GetLength) \
911 V(HashSet, Values) \
912 V(HashSet, Entries) \
913 V(HashSet, ForEach) \
/arkcompiler/ets_runtime/test/fuzztest/containershashsetadd_fuzzer/
Dcontainershashsetadd_fuzzer.cpp64 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::HashSet))); in InitializeHashSetConstructor()
/arkcompiler/ets_runtime/test/fuzztest/containershashsetconstructor_fuzzer/
Dcontainershashsetconstructor_fuzzer.cpp64 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::HashSet))); in InitializeHashSetConstructor()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_api_hashset_iterator_test.cpp74 … objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(containers::ContainerTag::HashSet))); in CreateHashSet()
Djs_api_hashset_test.cpp74 … objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(containers::ContainerTag::HashSet))); in CreateHashSet()
/arkcompiler/ets_runtime/test/fuzztest/containershashsetclear_fuzzer/
Dcontainershashsetclear_fuzzer.cpp64 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::HashSet))); in InitializeHashSetConstructor()
/arkcompiler/ets_runtime/test/fuzztest/containershashsetisempty_fuzzer/
Dcontainershashsetisempty_fuzzer.cpp64 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::HashSet))); in InitializeHashSetConstructor()
/arkcompiler/ets_runtime/test/fuzztest/containershashsethas_fuzzer/
Dcontainershashsethas_fuzzer.cpp64 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::HashSet))); in InitializeHashSetConstructor()
/arkcompiler/ets_runtime/test/fuzztest/containershashsetremove_fuzzer/
Dcontainershashsetremove_fuzzer.cpp64 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::HashSet))); in InitializeHashSetConstructor()
/arkcompiler/ets_runtime/test/fuzztest/containershashsetgetlength_fuzzer/
Dcontainershashsetgetlength_fuzzer.cpp64 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::HashSet))); in InitializeHashSetConstructor()
/arkcompiler/ets_runtime/test/fuzztest/containershashsetforeach_fuzzer/
Dcontainershashsetforeach_fuzzer.cpp63 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::HashSet))); in InitializeHashSetConstructor()
/arkcompiler/ets_runtime/test/fuzztest/containershashsetentries_fuzzer/
Dcontainershashsetentries_fuzzer.cpp64 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::HashSet))); in InitializeHashSetConstructor()
/arkcompiler/ets_runtime/test/fuzztest/containershashsetvalues_fuzzer/
Dcontainershashsetvalues_fuzzer.cpp64 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::HashSet))); in InitializeHashSetConstructor()
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp172 using HashSet = containers::ContainersHashSet; typedef
773 reinterpret_cast<uintptr_t>(HashSet::HashSetConstructor),
774 reinterpret_cast<uintptr_t>(HashSet::IsEmpty),
775 reinterpret_cast<uintptr_t>(HashSet::Has),
776 reinterpret_cast<uintptr_t>(HashSet::Add),
777 reinterpret_cast<uintptr_t>(HashSet::Remove),
778 reinterpret_cast<uintptr_t>(HashSet::Clear),
779 reinterpret_cast<uintptr_t>(HashSet::GetLength),
780 reinterpret_cast<uintptr_t>(HashSet::Values),
781 reinterpret_cast<uintptr_t>(HashSet::Entries),
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_hashset_test.cpp72 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::HashSet))); in InitializeHashSetConstructor()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins.cpp3762 …onstant(arkPrivate, "HashSet", JSTaggedValue(static_cast<int>(containers::ContainerTag::HashSet))); in InitializeArkPrivate()