Searched refs:JSAPIHashSetIterator (Results 1 – 14 of 14) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/js_api/ |
D | js_api_hashset_iterator.h | 24 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,
|
D | js_api_hashset_iterator.cpp | 30 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/ |
D | js_api_hashset_iterator_test.cpp | 100 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()
|
D | js_api_hashset_test.cpp | 241 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()
|
D | dump_test.cpp | 1148 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/ |
D | containers_hashset.cpp | 72 …JSHandle<JSTaggedValue> iter = JSAPIHashSetIterator::CreateHashSetIterator(thread, self, Iteration… in Values() 93 JSAPIHashSetIterator::CreateHashSetIterator(thread, self, IterationKind::KEY_AND_VALUE); in Entries()
|
D | containers_private.cpp | 1243 …SetFrozenFunction(thread, hashSetIteratorPrototype, "next", JSAPIHashSetIterator::Next, FuncLength… in InitializeHashSetIterator()
|
/arkcompiler/ets_runtime/ecmascript/containers/tests/ |
D | containers_hashset_test.cpp | 348 result.Update(JSAPIHashSetIterator::Next(callInfo2)); in HWTEST_F_L0() 403 result2.Update(JSAPIHashSetIterator::Next(callInfo6)); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | global_env_constants.cpp | 285 … factory->NewEcmaHClass(hClass, JSAPIHashSetIterator::SIZE, JSType::JS_API_HASHSET_ITERATOR)); in InitRootsClass()
|
D | object_factory.h | 124 class JSAPIHashSetIterator; variable 626 …JSHandle<JSAPIHashSetIterator> NewJSAPIHashSetIterator(const JSHandle<JSAPIHashSet> &hashSet, Iter…
|
D | dump.cpp | 1126 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()
|
D | object_factory.cpp | 3218 JSHandle<JSAPIHashSetIterator> ObjectFactory::NewJSAPIHashSetIterator(const JSHandle<JSAPIHashSet> … in NewJSAPIHashSetIterator() 3227 JSHandle<JSAPIHashSetIterator> iter(NewJSObject(hclassHandle)); in NewJSAPIHashSetIterator()
|
/arkcompiler/ets_runtime/ecmascript/mem/ |
D | object_xray.h | 597 JSAPIHashSetIterator::Cast(object)->VisitRangeSlot<visitType>(visitor); in VisitObjectBody()
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
D | snapshot_processor.cpp | 785 reinterpret_cast<uintptr_t>(JSAPIHashSetIterator::Next),
|