Home
last modified time | relevance | path

Searched refs:JSAPIHashSetIterator (Results 1 – 15 of 15) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_hashset_iterator.h24 class JSAPIHashSetIterator : public JSObject {
26 static JSAPIHashSetIterator *Cast(TaggedObject *obj) in Cast()
29 return static_cast<JSAPIHashSetIterator *>(obj); in Cast()
34 …static JSHandle<JSTaggedValue> GetCurrentNode(JSThread *thread, JSHandle<JSAPIHashSetIterator> &it…
37 … JSHandle<JSTaggedValue> FastGetCurrentNode(JSThread *thread, JSHandle<JSAPIHashSetIterator> &iter,
Djs_api_hashset_iterator.cpp24 JSTaggedValue JSAPIHashSetIterator::Next(EcmaRuntimeCallInfo *argv) in Next()
36 JSHandle<JSAPIHashSetIterator> iter = JSHandle<JSAPIHashSetIterator>::Cast(input); in Next()
77 JSHandle<JSTaggedValue> JSAPIHashSetIterator::FastGetCurrentNode(JSThread *thread, in FastGetCurrentNode()
78 … JSHandle<JSAPIHashSetIterator> &iter, in FastGetCurrentNode()
104 JSHandle<JSTaggedValue> JSAPIHashSetIterator::GetCurrentNode(JSThread *thread, JSHandle<JSAPIHashSe… in GetCurrentNode()
137 JSHandle<JSTaggedValue> JSAPIHashSetIterator::CreateHashSetIterator(JSThread *thread, in CreateHashSetIterator()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_api_hashset_iterator_test.cpp53 JSHandle<JSAPIHashSetIterator> hashSetIterator = factory->NewJSAPIHashSetIterator( in HWTEST_F_L0()
64 JSTaggedValue result = JSAPIHashSetIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
77 JSTaggedValue result = JSAPIHashSetIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
86 JSAPIHashSetIterator::CreateHashSetIterator(thread, undefined, IterationKind::KEY); in HWTEST_F_L0()
Djs_api_hashset_test.cpp185 HWTEST_F_L0(JSAPIHashSetTest, JSAPIHashSetIterator) in HWTEST_F_L0() argument
240 …JSHandle<JSAPIHashSetIterator> hashsetIterator = factory->NewJSAPIHashSetIterator(hashSet, Iterati… in HWTEST_F_L0()
247 JSTaggedValue result = JSAPIHashSetIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
Ddump_test.cpp1272 CHECK_DUMP_FIELDS(JSObject::SIZE, JSAPIHashSetIterator::SIZE, 5U); in HWTEST_F_L0()
1274 JSHandle<JSAPIHashSetIterator> jsHashSetIter = in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_hashset.cpp68 …JSHandle<JSTaggedValue> iter = JSAPIHashSetIterator::CreateHashSetIterator(thread, self, Iteration… in GetIteratorObj()
88 …JSHandle<JSTaggedValue> iter = JSAPIHashSetIterator::CreateHashSetIterator(thread, self, Iteration… in Values()
109 JSAPIHashSetIterator::CreateHashSetIterator(thread, self, IterationKind::KEY_AND_VALUE); in Entries()
Dcontainers_private.cpp1100 …SetFrozenFunction(thread, hashSetIteratorPrototype, "next", JSAPIHashSetIterator::Next, FuncLength… in InitializeHashSetIterator()
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_hashset_test.cpp348 result.Update(JSAPIHashSetIterator::Next(callInfo2)); in HWTEST_F_L0()
403 result2.Update(JSAPIHashSetIterator::Next(callInfo6)); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/
Djs_metadata_test.cpp495 JSAPIHashSetIterator::ITERATED_HASHSET_OFFSET, in JSMetadataTestHelper()
496 JSAPIHashSetIterator::TAGGED_QUEUE_OFFSET, in JSMetadataTestHelper()
497 JSAPIHashSetIterator::CURRENT_NODE_RESULT, in JSMetadataTestHelper()
498 JSAPIHashSetIterator::SIZE - JSAPIHashSetIterator::ITERATED_HASHSET_OFFSET}}, in JSMetadataTestHelper()
1314JSAPIHashSetIterator::TAGGED_QUEUE_OFFSET - JSAPIHashSetIterator::ITERATED_HASHSET_OFFSET, in JSMetadataTestHelper()
1315JSAPIHashSetIterator::CURRENT_NODE_RESULT - JSAPIHashSetIterator::TAGGED_QUEUE_OFFSET, in JSMetadataTestHelper()
1316JSAPIHashSetIterator::NEXT_INDEX_OFFSET - JSAPIHashSetIterator::CURRENT_NODE_RESULT}}, in JSMetadataTestHelper()
/arkcompiler/ets_runtime/ecmascript/mem/
Dobject_xray.h647 JSAPIHashSetIterator::Cast(object)->VisitRangeSlot<visitType>(visitor); in VisitObjectBody()
/arkcompiler/ets_runtime/ecmascript/
Dglobal_env_constants.cpp330 … factory->NewEcmaHClass(hClass, JSAPIHashSetIterator::SIZE, JSType::JS_API_HASHSET_ITERATOR)); in InitRootsClassesPartOne()
Dobject_factory.h121 class JSAPIHashSetIterator; variable
674 …JSHandle<JSAPIHashSetIterator> NewJSAPIHashSetIterator(const JSHandle<JSAPIHashSet> &hashSet, Iter…
Ddump.cpp1102 JSAPIHashSetIterator::Cast(obj)->Dump(os); in DumpObject()
2350 void JSAPIHashSetIterator::Dump(std::ostream &os) const in Dump()
2357 void JSAPIHashSetIterator::DumpForSnapshot(std::vector<Reference> &vec) const in DumpForSnapshot()
4286 JSAPIHashSetIterator::Cast(obj)->DumpForSnapshot(vec); in DumpObject()
Dobject_factory.cpp3700 JSHandle<JSAPIHashSetIterator> ObjectFactory::NewJSAPIHashSetIterator(const JSHandle<JSAPIHashSet> … in NewJSAPIHashSetIterator()
3709 JSHandle<JSAPIHashSetIterator> iter(NewJSObject(hclassHandle)); in NewJSAPIHashSetIterator()
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp764 reinterpret_cast<uintptr_t>(JSAPIHashSetIterator::Next),