/arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/java_test_framework/java_cases/ |
H A D | TreeSetTest.java | 16 import java.util.TreeSet; 24 TreeSet<Integer> treeSet = new TreeSet<>(); in main() 28 System.out.println("TreeSet elements in order: " + treeSet); in main()
|
/arkcompiler/ets_runtime/ecmascript/containers/ |
H A D | containers_treeset.cpp | 29 BUILTINS_API_TRACE(argv->GetThread(), TreeSet, Constructor); in TreeSetConstructor() 38 "The TreeSet's constructor cannot be directly invoked"); in TreeSetConstructor() 41 // new TreeSet in TreeSetConstructor() 72 BUILTINS_API_TRACE(argv->GetThread(), TreeSet, Add); in Add() 96 BUILTINS_API_TRACE(argv->GetThread(), TreeSet, Remove); in Remove() 118 BUILTINS_API_TRACE(argv->GetThread(), TreeSet, Has); in Has() 143 BUILTINS_API_TRACE(argv->GetThread(), TreeSet, GetFirstValue); in GetFirstValue() 164 BUILTINS_API_TRACE(argv->GetThread(), TreeSet, GetLastValue); in GetLastValue() 185 BUILTINS_API_TRACE(argv->GetThread(), TreeSet, Clear); in Clear() 206 BUILTINS_API_TRACE(argv->GetThread(), TreeSet, GetLowerValu in GetLowerValue() [all...] |
H A D | containers_private.h | 35 TreeSet, 46 // TreeMap, TreeSet, HashMap, HashSet, LightWeightMap, LightWeightSet, PlainArray.
|
/arkcompiler/ets_runtime/test/fuzztest/containersprivatetreeset_fuzzer/ |
H A D | containersprivatetreeset_fuzzer.cpp | 35 ContainersPrivateFuzzTestHelper::ContainersPrivateCommonFuzzTest(data, size, ContainerTag::TreeSet);
in ContainersPrivateTreeSetFuzzTest()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | runtime_call_id.h | 1105 V(TreeSet, Constructor) \ 1106 V(TreeSet, Add) \ 1107 V(TreeSet, Remove) \ 1108 V(TreeSet, Clear) \ 1109 V(TreeSet, Has) \ 1110 V(TreeSet, GetFirstValue) \ 1111 V(TreeSet, GetLastValue) \ 1112 V(TreeSet, GetLowerValue) \ 1113 V(TreeSet, GetHigherValue) \ 1114 V(TreeSet, PopFirs [all...] |
/arkcompiler/ets_runtime/ecmascript/js_api/ |
H A D | js_api_tree_set.h | 52 ACCESSORS(TreeSet, TREE_SET_OFFSET, SIZE)
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot_processor.cpp | 147 using TreeSet = containers::ContainersTreeSet; 829 reinterpret_cast<uintptr_t>(TreeSet::TreeSetConstructor), 830 reinterpret_cast<uintptr_t>(TreeSet::Add), 831 reinterpret_cast<uintptr_t>(TreeSet::Has), 832 reinterpret_cast<uintptr_t>(TreeSet::Remove), 833 reinterpret_cast<uintptr_t>(TreeSet::GetFirstValue), 834 reinterpret_cast<uintptr_t>(TreeSet::GetLastValue), 835 reinterpret_cast<uintptr_t>(TreeSet::GetLowerValue), 836 reinterpret_cast<uintptr_t>(TreeSet::GetHigherValue), 837 reinterpret_cast<uintptr_t>(TreeSet [all...] |
/arkcompiler/toolchain/tooling/test/testcases/js/ |
H A D | container.js | 293 var TreeSet = ArkPrivate.Load(ArkPrivate.TreeSet); 294 let treeSet = new TreeSet();
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetgethighervalue_fuzzer/ |
H A D | containerstreesetgethighervalue_fuzzer.cpp | 63 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::TreeSet))); in InitializeTreeSetConstructor()
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetgetfirstvalue_fuzzer/ |
H A D | containerstreesetgetfirstvalue_fuzzer.cpp | 63 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::TreeSet))); in InitializeTreeSetConstructor()
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetentries_fuzzer/ |
H A D | containerstreesetentries_fuzzer.cpp | 63 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::TreeSet))); in InitializeTreeSetConstructor()
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetconstructor_fuzzer/ |
H A D | containerstreesetconstructor_fuzzer.cpp | 63 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::TreeSet))); in InitializeTreeSetConstructor()
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetgetlowervalue_fuzzer/ |
H A D | containerstreesetgetlowervalue_fuzzer.cpp | 63 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::TreeSet))); in InitializeTreeSetConstructor()
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesethas_fuzzer/ |
H A D | containerstreesethas_fuzzer.cpp | 63 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::TreeSet))); in InitializeTreeSetConstructor()
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetpopfirst_fuzzer/ |
H A D | containerstreesetpopfirst_fuzzer.cpp | 63 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::TreeSet))); in InitializeTreeSetConstructor()
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetisempty_fuzzer/ |
H A D | containerstreesetisempty_fuzzer.cpp | 63 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::TreeSet))); in InitializeTreeSetConstructor()
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetclear_fuzzer/ |
H A D | containerstreesetclear_fuzzer.cpp | 63 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::TreeSet))); in InitializeTreeSetConstructor()
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetadd_fuzzer/ |
H A D | containerstreesetadd_fuzzer.cpp | 63 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::TreeSet))); in InitializeTreeSetConstructor()
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetgetlastvalue_fuzzer/ |
H A D | containerstreesetgetlastvalue_fuzzer.cpp | 63 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::TreeSet))); in InitializeTreeSetConstructor()
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetgetlength_fuzzer/ |
H A D | containerstreesetgetlength_fuzzer.cpp | 63 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::TreeSet))); in InitializeTreeSetConstructor()
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetpoplast_fuzzer/ |
H A D | containerstreesetpoplast_fuzzer.cpp | 63 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::TreeSet))); in InitializeTreeSetConstructor()
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetremove_fuzzer/ |
H A D | containerstreesetremove_fuzzer.cpp | 63 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::TreeSet))); in InitializeTreeSetConstructor()
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetvalues_fuzzer/ |
H A D | containerstreesetvalues_fuzzer.cpp | 63 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::TreeSet))); in InitializeTreeSetConstructor()
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetforeach_fuzzer/ |
H A D | containerstreesetforeach_fuzzer.cpp | 64 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::TreeSet))); in InitializeTreeSetConstructor()
|
/arkcompiler/ets_runtime/test/moduletest/container/ |
H A D | container_treeset.js | 30 fastset = ArkPrivate.Load(ArkPrivate.TreeSet); 256 print("TreeSet forEach throw error fail"); 260 print("Test TreeSet success!!!"); 262 print("Test TreeSet fail: " + flag); 315 export let treesetRes = "Test TreeSet done"
|