| /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 | 1288 CHECK_DUMP_FIELDS(JSObject::SIZE, JSAPIHashSetIterator::SIZE, 4U); in HWTEST_F_L0() 1290 JSHandle<JSAPIHashSetIterator> jsHashSetIter = in HWTEST_F_L0()
|
| /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()
|
| D | js_api_hashset_iterator.cpp | 26 JSTaggedValue JSAPIHashSetIterator::Next(EcmaRuntimeCallInfo *argv) in Next() 38 JSHandle<JSAPIHashSetIterator> iter = JSHandle<JSAPIHashSetIterator>::Cast(input); in Next() 55 …currentNode.Update(JSAPIHashArrayIterator::GetCurrentNode<JSAPIHashSetIterator>(thread, iter, queu… in Next() 76 JSHandle<JSTaggedValue> JSAPIHashSetIterator::CreateHashSetIterator(JSThread *thread, in CreateHashSetIterator()
|
| D | js_api_hasharray_iterator.h | 65 … ASSERT((std::is_same_v<T, JSAPIHashMapIterator>) || (std::is_same_v<T, JSAPIHashSetIterator>)); in GetCurrentNode()
|
| /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 | 1078 …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 | 500 JSAPIHashSetIterator::ITERATED_HASHSET_OFFSET, in JSMetadataTestHelper() 501 JSAPIHashSetIterator::TAGGED_QUEUE_OFFSET, in JSMetadataTestHelper() 502 JSAPIHashSetIterator::CURRENT_NODE_RESULT, in JSMetadataTestHelper() 503 JSAPIHashSetIterator::SIZE - JSAPIHashSetIterator::ITERATED_HASHSET_OFFSET}}, in JSMetadataTestHelper() 1322 … JSAPIHashSetIterator::TAGGED_QUEUE_OFFSET - JSAPIHashSetIterator::ITERATED_HASHSET_OFFSET, in JSMetadataTestHelper() 1323 … JSAPIHashSetIterator::CURRENT_NODE_RESULT - JSAPIHashSetIterator::TAGGED_QUEUE_OFFSET, in JSMetadataTestHelper() 1324 … JSAPIHashSetIterator::NEXT_INDEX_OFFSET - JSAPIHashSetIterator::CURRENT_NODE_RESULT}}, in JSMetadataTestHelper()
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | global_env_constants.cpp | 401 … factory->NewEcmaHClass(hClass, JSAPIHashSetIterator::SIZE, JSType::JS_API_HASHSET_ITERATOR)); in InitRootsClassesPartOne()
|
| D | object_factory.h | 126 class JSAPIHashSetIterator; variable 723 …JSHandle<JSAPIHashSetIterator> NewJSAPIHashSetIterator(const JSHandle<JSAPIHashSet> &hashSet, Iter…
|
| D | dump.cpp | 1149 JSAPIHashSetIterator::Cast(obj)->Dump(thread, os); in DumpObject() 2444 void JSAPIHashSetIterator::Dump(const JSThread *thread, std::ostream &os) const in Dump() 2451 void JSAPIHashSetIterator::DumpForSnapshot(const JSThread *thread, std::vector<Reference> &vec) con… in DumpForSnapshot() 4407 JSAPIHashSetIterator::Cast(obj)->DumpForSnapshot(thread, vec); in DumpObject()
|
| D | object_factory.cpp | 3793 JSHandle<JSAPIHashSetIterator> ObjectFactory::NewJSAPIHashSetIterator(const JSHandle<JSAPIHashSet> … in NewJSAPIHashSetIterator() 3803 JSHandle<JSAPIHashSetIterator> iter(NewJSObject(hclassHandle)); in NewJSAPIHashSetIterator()
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | object_xray.h | 676 JSAPIHashSetIterator::Cast(object)->VisitRangeSlot<visitType>(visitor); in VisitObjectBody()
|
| /arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
| D | snapshot_processor.cpp | 768 reinterpret_cast<uintptr_t>(JSAPIHashSetIterator::Next),
|