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.cpp1089 CHECK_DUMP_FIELDS(JSObject::SIZE, JSAPIHashSetIterator::SIZE, 5U); in HWTEST_F_L0()
1091 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.cpp1234 …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/
Dobject_factory.h120 class JSAPIHashSetIterator; variable
577 …JSHandle<JSAPIHashSetIterator> NewJSAPIHashSetIterator(const JSHandle<JSAPIHashSet> &hashSet, Iter…
Dglobal_env_constants.cpp268 … factory->NewEcmaHClass(hClass, JSAPIHashSetIterator::SIZE, JSType::JS_API_HASHSET_ITERATOR)); in InitRootsClass()
Ddump.cpp1031 JSAPIHashSetIterator::Cast(obj)->Dump(os); in DumpObject()
2080 void JSAPIHashSetIterator::Dump(std::ostream &os) const in Dump()
2087 void JSAPIHashSetIterator::DumpForSnapshot(std::vector<std::pair<CString, JSTaggedValue>> &vec) con… in DumpForSnapshot()
3996 JSAPIHashSetIterator::Cast(obj)->DumpForSnapshot(vec); in DumpObject()
Dobject_factory.cpp2771 JSHandle<JSAPIHashSetIterator> ObjectFactory::NewJSAPIHashSetIterator(const JSHandle<JSAPIHashSet> … in NewJSAPIHashSetIterator()
2780 JSHandle<JSAPIHashSetIterator> iter(NewJSObject(hclassHandle)); in NewJSAPIHashSetIterator()
/arkcompiler/ets_runtime/ecmascript/mem/
Dobject_xray.h531 JSAPIHashSetIterator::Cast(object)->VisitRangeSlot(visitor); in VisitObjectBody()
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp783 reinterpret_cast<uintptr_t>(JSAPIHashSetIterator::Next),