Home
last modified time | relevance | path

Searched refs:JSAPIHashSetIterator (Results 1 – 14 of 14) 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.cpp30 JSTaggedValue JSAPIHashSetIterator::Next(EcmaRuntimeCallInfo *argv) in Next()
42 JSHandle<JSAPIHashSetIterator> iter = JSHandle<JSAPIHashSetIterator>::Cast(input); in Next()
83 JSHandle<JSTaggedValue> JSAPIHashSetIterator::FastGetCurrentNode(JSThread *thread, in FastGetCurrentNode()
84 … JSHandle<JSAPIHashSetIterator> &iter, in FastGetCurrentNode()
110 JSHandle<JSTaggedValue> JSAPIHashSetIterator::GetCurrentNode(JSThread *thread, JSHandle<JSAPIHashSe… in GetCurrentNode()
143 JSHandle<JSTaggedValue> JSAPIHashSetIterator::CreateHashSetIterator(JSThread *thread, in CreateHashSetIterator()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_api_hashset_iterator_test.cpp100 JSHandle<JSAPIHashSetIterator> hashSetIterator = factory->NewJSAPIHashSetIterator( in HWTEST_F_L0()
111 JSTaggedValue result = JSAPIHashSetIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
124 JSTaggedValue result = JSAPIHashSetIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
133 JSAPIHashSetIterator::CreateHashSetIterator(thread, undefined, IterationKind::KEY); in HWTEST_F_L0()
Djs_api_hashset_test.cpp241 HWTEST_F_L0(JSAPIHashSetTest, JSAPIHashSetIterator) in HWTEST_F_L0() argument
296 …JSHandle<JSAPIHashSetIterator> hashsetIterator = factory->NewJSAPIHashSetIterator(hashSet, Iterati… in HWTEST_F_L0()
303 JSTaggedValue result = JSAPIHashSetIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
Ddump_test.cpp1148 CHECK_DUMP_FIELDS(JSObject::SIZE, JSAPIHashSetIterator::SIZE, 5U); in HWTEST_F_L0()
1150 JSHandle<JSAPIHashSetIterator> jsHashSetIter = in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_hashset.cpp72 …JSHandle<JSTaggedValue> iter = JSAPIHashSetIterator::CreateHashSetIterator(thread, self, Iteration… in Values()
93 JSAPIHashSetIterator::CreateHashSetIterator(thread, self, IterationKind::KEY_AND_VALUE); in Entries()
Dcontainers_private.cpp1243 …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/
Dglobal_env_constants.cpp285 … factory->NewEcmaHClass(hClass, JSAPIHashSetIterator::SIZE, JSType::JS_API_HASHSET_ITERATOR)); in InitRootsClass()
Dobject_factory.h124 class JSAPIHashSetIterator; variable
626 …JSHandle<JSAPIHashSetIterator> NewJSAPIHashSetIterator(const JSHandle<JSAPIHashSet> &hashSet, Iter…
Ddump.cpp1126 JSAPIHashSetIterator::Cast(obj)->Dump(os); in DumpObject()
2214 void JSAPIHashSetIterator::Dump(std::ostream &os) const in Dump()
2221 void JSAPIHashSetIterator::DumpForSnapshot(std::vector<Reference> &vec) const in DumpForSnapshot()
4241 JSAPIHashSetIterator::Cast(obj)->DumpForSnapshot(vec); in DumpObject()
Dobject_factory.cpp3218 JSHandle<JSAPIHashSetIterator> ObjectFactory::NewJSAPIHashSetIterator(const JSHandle<JSAPIHashSet> … in NewJSAPIHashSetIterator()
3227 JSHandle<JSAPIHashSetIterator> iter(NewJSObject(hclassHandle)); in NewJSAPIHashSetIterator()
/arkcompiler/ets_runtime/ecmascript/mem/
Dobject_xray.h597 JSAPIHashSetIterator::Cast(object)->VisitRangeSlot<visitType>(visitor); in VisitObjectBody()
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp785 reinterpret_cast<uintptr_t>(JSAPIHashSetIterator::Next),