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 | 1089 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/ |
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 | 1234 …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 | object_factory.h | 120 class JSAPIHashSetIterator; variable 577 …JSHandle<JSAPIHashSetIterator> NewJSAPIHashSetIterator(const JSHandle<JSAPIHashSet> &hashSet, Iter…
|
D | global_env_constants.cpp | 268 … factory->NewEcmaHClass(hClass, JSAPIHashSetIterator::SIZE, JSType::JS_API_HASHSET_ITERATOR)); in InitRootsClass()
|
D | dump.cpp | 1031 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()
|
D | object_factory.cpp | 2771 JSHandle<JSAPIHashSetIterator> ObjectFactory::NewJSAPIHashSetIterator(const JSHandle<JSAPIHashSet> … in NewJSAPIHashSetIterator() 2780 JSHandle<JSAPIHashSetIterator> iter(NewJSObject(hclassHandle)); in NewJSAPIHashSetIterator()
|
/arkcompiler/ets_runtime/ecmascript/mem/ |
D | object_xray.h | 531 JSAPIHashSetIterator::Cast(object)->VisitRangeSlot(visitor); in VisitObjectBody()
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
D | snapshot_processor.cpp | 783 reinterpret_cast<uintptr_t>(JSAPIHashSetIterator::Next),
|