Searched refs:JSSetIterator (Results 1 – 11 of 11) sorted by relevance
/ark/js_runtime/ecmascript/ |
D | js_set_iterator.cpp | 26 JSTaggedValue JSSetIterator::Next(EcmaRuntimeCallInfo *argv) in Next() 39 JSHandle<JSSetIterator> iter(input); in Next() 78 void JSSetIterator::Update(const JSThread *thread) in Update() 100 JSHandle<JSTaggedValue> JSSetIterator::CreateSetIterator(JSThread *thread, const JSHandle<JSTaggedV… in CreateSetIterator()
|
D | js_set_iterator.h | 23 class JSSetIterator : public JSObject { 25 CAST_CHECK(JSSetIterator, IsJSSetIterator);
|
D | object_factory.h | 55 class JSSetIterator; variable 280 JSHandle<JSSetIterator> NewJSSetIterator(const JSHandle<JSSet> &set, IterationKind kind);
|
D | object_factory.cpp | 1850 JSHandle<JSSetIterator> ObjectFactory::NewJSSetIterator(const JSHandle<JSSet> &set, IterationKind k… in NewJSSetIterator() 1854 …JSHandle<JSHClass> dynHandle = NewEcmaDynClass(JSSetIterator::SIZE, JSType::JS_SET_ITERATOR, proto… in NewJSSetIterator() 1855 JSHandle<JSSetIterator> iter(NewJSObject(dynHandle)); in NewJSSetIterator()
|
D | dump.cpp | 557 JSSetIterator::Cast(obj)->Dump(thread, os); in DumpObject() 1335 void JSSetIterator::Dump(JSThread *thread, std::ostream &os) const in Dump() 2969 void JSSetIterator::DumpForSnapshot([[maybe_unused]] JSThread *thread, in DumpForSnapshot()
|
D | builtins.cpp | 1505 SetFunction(env, setIteratorPrototype, "next", JSSetIterator::Next, FunctionLength::ZERO); in InitializeSetIterator()
|
/ark/js_runtime/ecmascript/builtins/ |
D | builtins_set.cpp | 248 …JSHandle<JSTaggedValue> iter = JSSetIterator::CreateSetIterator(thread, self, IterationKind::KEY_A… in Entries() 259 …JSHandle<JSTaggedValue> iter = JSSetIterator::CreateSetIterator(thread, self, IterationKind::VALUE… in Values()
|
/ark/js_runtime/ecmascript/builtins/tests/ |
D | builtins_set_test.cpp | 352 JSHandle<JSSetIterator> iter(thread, result); in HWTEST_F_L0() 359 JSHandle<JSSetIterator> iter2(thread, result2); in HWTEST_F_L0()
|
/ark/js_runtime/ecmascript/mem/ |
D | object_xray-inl.h | 152 JSSetIterator::Cast(object)->VisitRangeSlot(visitor); in VisitObjectBody()
|
/ark/js_runtime/ecmascript/tests/ |
D | dump_test.cpp | 366 CHECK_DUMP_FILEDS(JSObject::SIZE, JSSetIterator::SIZE, 2) in HWTEST_F_L0() 367 JSHandle<JSSetIterator> jsSetIter = in HWTEST_F_L0()
|
/ark/js_runtime/ecmascript/snapshot/mem/ |
D | snapshot_serialize.cpp | 490 reinterpret_cast<uintptr_t>(JSSetIterator::Next),
|