/ark/js_runtime/ecmascript/ |
D | js_api_tree_set.cpp | 22 void JSAPITreeSet::Add(JSThread *thread, const JSHandle<JSAPITreeSet> &set, const JSHandle<JSTagged… in Add() 46 bool JSAPITreeSet::Delete(JSThread *thread, const JSHandle<JSAPITreeSet> &set, const JSHandle<JSTag… in Delete() 60 bool JSAPITreeSet::Has(JSThread *thread, const JSHandle<JSAPITreeSet> &set, const JSHandle<JSTagged… in Has() 66 void JSAPITreeSet::Clear(const JSThread *thread, const JSHandle<JSAPITreeSet> &set) in Clear() 73 JSTaggedValue JSAPITreeSet::PopFirst(JSThread *thread, const JSHandle<JSAPITreeSet> &set) in PopFirst() 86 JSTaggedValue JSAPITreeSet::PopLast(JSThread *thread, const JSHandle<JSAPITreeSet> &set) in PopLast()
|
D | js_set.cpp | 23 void JSSet::Add(JSThread *thread, const JSHandle<JSSet> &set, const JSHandle<JSTaggedValue> &value) in Add() 35 bool JSSet::Delete(const JSThread *thread, const JSHandle<JSSet> &set, const JSHandle<JSTaggedValue… in Delete() 48 void JSSet::Clear(const JSThread *thread, const JSHandle<JSSet> &set) in Clear()
|
D | js_set_iterator.cpp | 52 JSHandle<LinkedHashSet> set(iteratedSet); in Next() local 85 LinkedHashSet *set = LinkedHashSet::Cast(iteratedSet.GetTaggedObject()); in Update() local
|
D | runtime_api.cpp | 35 auto set = objectRegion->GetOrCreateCrossRegionRememberedSet(); in MarkObject() local
|
D | tagged_tree.cpp | 576 …edArray> TaggedTreeSet::GetArrayFromSet(const JSThread *thread, const JSHandle<TaggedTreeSet> &set) in GetArrayFromSet() 586 JSTaggedValue TaggedTreeSet::Delete(JSThread *thread, const JSHandle<TaggedTreeSet> &set, int entry) in Delete() 592 JSTaggedValue TaggedTreeSet::GetLowerKey(JSThread *thread, const JSHandle<TaggedTreeSet> &set, in GetLowerKey() 598 JSTaggedValue TaggedTreeSet::GetHigherKey(JSThread *thread, const JSHandle<TaggedTreeSet> &set, in GetHigherKey() 604 int TaggedTreeSet::FindEntry(JSThread *thread, const JSHandle<TaggedTreeSet> &set, const JSHandle<J… in FindEntry()
|
D | js_api_tree_set_iterator.cpp | 46 JSHandle<TaggedTreeSet> set(thread, JSHandle<JSAPITreeSet>::Cast(iteratedSet)->GetTreeSet()); in Next() local
|
/ark/js_runtime/ecmascript/containers/ |
D | containers_treeset.cpp | 44 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(obj); in TreeSetConstructor() local 74 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in Add() local 91 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in Remove() local 108 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in Has() local 126 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in GetFirstValue() local 141 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in GetLastValue() local 171 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in GetLowerValue() local 189 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in GetHigherValue() local 209 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in PopFirst() local 224 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in PopLast() local [all …]
|
/ark/js_runtime/ecmascript/mem/ |
D | region-inl.h | 66 auto set = GetOrCreateCrossRegionRememberedSet(); in InsertCrossRegionRememberedSet() local 72 auto set = GetOrCreateCrossRegionRememberedSet(); in AtomicInsertCrossRegionRememberedSet() local 78 auto set = GetOrCreateOldToNewRememberedSet(); in InsertOldToNewRememberedSet() local 84 auto set = GetOrCreateOldToNewRememberedSet(); in AtomicInsertOldToNewRememberedSet() local
|
D | free_object_list.cpp | 137 auto set = region->GetFreeObjectSet(type); in Free() local 155 EnumerateSets([](FreeObjectSet *set) { set->Rebuild(); }); in Rebuild() 165 bool FreeObjectList::AddSet(FreeObjectSet *set) in AddSet() 192 void FreeObjectList::RemoveSet(FreeObjectSet *set) in RemoveSet() 223 list->EnumerateTopAndLastSets([this](FreeObjectSet *set, FreeObjectSet *end) { in Merge()
|
D | region.h | 295 for (auto set : sets_) { in DestroySet() local 296 delete set; in DestroySet() local 313 for (auto set : sets_) { in EnumerateSets() local
|
/ark/js_runtime/test/moduletest/container/ |
D | container_treeset.js | 21 let set = new fastset(); variable 62 function TestForEach(value, key, set) { argument
|
/ark/js_runtime/ecmascript/tests/ |
D | js_set_test.cpp | 69 JSHandle<JSSet> set = in CreateSet() local 79 JSSet *set = CreateSet(); in HWTEST_F_L0() local 87 JSHandle<JSSet> set(thread, CreateSet()); in HWTEST_F_L0() local 98 JSHandle<JSSet> set(thread, CreateSet()); in HWTEST_F_L0() local 120 JSHandle<JSSet> set(thread, CreateSet()); in HWTEST_F_L0() local
|
D | js_api_tree_set_test.cpp | 83 …JSHandle<JSAPITreeSet> set(factory->NewJSObjectByConstructor(JSHandle<JSFunction>(constructor), co… in CreateTreeSet() local 92 JSAPITreeSet *set = CreateTreeSet(); in HWTEST_F_L0() local
|
/ark/js_runtime/ecmascript/builtins/ |
D | builtins_set.cpp | 46 JSHandle<JSSet> set = JSHandle<JSSet>::Cast(obj); in SetConstructor() local 119 JSHandle<JSSet> set(JSTaggedValue::ToObject(thread, self)); in Add() local 138 JSHandle<JSSet> set(thread, JSSet::Cast(*JSTaggedValue::ToObject(thread, self))); in Clear() local 156 JSHandle<JSSet> set(thread, JSSet::Cast(*JSTaggedValue::ToObject(thread, self))); in Delete() local 191 JSHandle<JSSet> set(thread, JSSet::Cast(*JSTaggedValue::ToObject(thread, self))); in ForEach() local
|
/ark/js_runtime/ecmascript/builtins/tests/ |
D | builtins_set_test.cpp | 103 JSHandle<JSSet> set(thread, CreateBuiltinsSet(thread)); in HWTEST_F_L0() local 139 JSHandle<JSSet> set(thread, CreateBuiltinsSet(thread)); in HWTEST_F_L0() local 198 JSHandle<JSSet> set(thread, CreateBuiltinsSet(thread)); in HWTEST_F_L0() local 237 JSHandle<JSSet> set(thread, CreateBuiltinsSet(thread)); in HWTEST_F_L0() local 295 JSHandle<JSTaggedValue> set(thread, CreateBuiltinsSet(thread)); in HWTEST_F_L0() local 343 JSHandle<JSTaggedValue> set(thread, CreateBuiltinsSet(thread)); in HWTEST_F_L0() local
|
/ark/runtime_core/verification/absint/ |
D | abs_int_inl.cpp | 63 PandaUnorderedSet<Type> set; in SubtypesOf() local 75 PandaUnorderedSet<Type> set; in SubtypesOf() local 87 PandaUnorderedSet<Type> set; in SupertypesOf() local 99 PandaUnorderedSet<Type> set; in SupertypesOf() local
|
/ark/runtime_core/verification/util/tests/ |
D | set_operations_test.cpp | 60 using set = std::set<int>; typedef 86 using set = std::set<int>; typedef 125 using set = std::set<int>; typedef
|
D | int_set_test.cpp | 79 StdSetT set = *rc::gen::container<StdSetT>(value_gen); in __anon5171e7bd0202() local 93 StdSetT set = *rc::gen::container<StdSetT>(value_gen); in __anon5171e7bd0302() local
|
/ark/js_runtime/test/moduletest/globalaccessor/ |
D | globalaccessor.js | 27 set() {} method
|
/ark/runtime_core/verification/util/ |
D | int_set.h | 351 SmallRepr(MPandaVector<T> set) : repr_ {set} {}; in SmallRepr() 515 LargeRepr(BitVector set) : repr_ {set} {}; in LargeRepr() 753 IntSet(MPandaVector<T> set) : repr_ {MMakePandaUnique<SmallRepr>(set)} {}; in IntSet() 754 IntSet(BitVector set) : repr_ {MMakePandaUnique<LargeRepr>(set)} {}; in IntSet()
|
/ark/runtime_core/verification/cache/ |
D | results_cache.cpp | 97 impl->verified_ok([&data](auto set) { in Destroy()
|
/ark/js_runtime/ecmascript/js_vm/ |
D | main.cpp | 37 sigset_t set; in BlockSignals() local
|
/ark/js_runtime/ecmascript/compiler/ |
D | aot_compiler.cpp | 38 sigset_t set; in BlockSignals() local
|
/ark/runtime_core/runtime/tests/ |
D | bitmap_test_base.h | 77 bool set = std::rand() % 2U == 1; in RunTest() local
|
/ark/runtime_core/verification/verifier/ |
D | verifier.cpp | 112 sigset_t set; in BlockSignals() local
|