Searched refs:JSAPIHashSetIterator (Results 1 – 15 of 15) 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 | 24 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/ |
| D | js_api_hashset_iterator_test.cpp | 53 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()
|
| D | js_api_hashset_test.cpp | 185 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()
|
| D | dump_test.cpp | 1272 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/ |
| D | containers_hashset.cpp | 68 …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()
|
| D | containers_private.cpp | 1100 …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/dfx/hprof/tests/ |
| D | js_metadata_test.cpp | 495 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() 1314 … JSAPIHashSetIterator::TAGGED_QUEUE_OFFSET - JSAPIHashSetIterator::ITERATED_HASHSET_OFFSET, in JSMetadataTestHelper() 1315 … JSAPIHashSetIterator::CURRENT_NODE_RESULT - JSAPIHashSetIterator::TAGGED_QUEUE_OFFSET, in JSMetadataTestHelper() 1316 … JSAPIHashSetIterator::NEXT_INDEX_OFFSET - JSAPIHashSetIterator::CURRENT_NODE_RESULT}}, in JSMetadataTestHelper()
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | object_xray.h | 647 JSAPIHashSetIterator::Cast(object)->VisitRangeSlot<visitType>(visitor); in VisitObjectBody()
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | global_env_constants.cpp | 330 … factory->NewEcmaHClass(hClass, JSAPIHashSetIterator::SIZE, JSType::JS_API_HASHSET_ITERATOR)); in InitRootsClassesPartOne()
|
| D | object_factory.h | 121 class JSAPIHashSetIterator; variable 674 …JSHandle<JSAPIHashSetIterator> NewJSAPIHashSetIterator(const JSHandle<JSAPIHashSet> &hashSet, Iter…
|
| D | dump.cpp | 1102 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()
|
| D | object_factory.cpp | 3700 JSHandle<JSAPIHashSetIterator> ObjectFactory::NewJSAPIHashSetIterator(const JSHandle<JSAPIHashSet> … in NewJSAPIHashSetIterator() 3709 JSHandle<JSAPIHashSetIterator> iter(NewJSObject(hclassHandle)); in NewJSAPIHashSetIterator()
|
| /arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
| D | snapshot_processor.cpp | 764 reinterpret_cast<uintptr_t>(JSAPIHashSetIterator::Next),
|