Home
last modified time | relevance | path

Searched refs:IsJSArrayIterator (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Djs_array_iterator.h25 CAST_CHECK(JSArrayIterator, IsJSArrayIterator);
Djs_array_iterator.cpp42 if (!thisObj->IsJSArrayIterator()) { in NextInternal()
Djs_object-inl.h188 inline bool JSObject::IsJSArrayIterator() const in IsJSArrayIterator() function
190 return GetJSHClass()->IsJSArrayIterator(); in IsJSArrayIterator()
Djs_tagged_value-inl.h1200 inline bool JSTaggedValue::IsJSArrayIterator() const in IsJSArrayIterator() function
1202 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSArrayIterator(); in IsJSArrayIterator()
Djs_tagged_value.h534 bool IsJSArrayIterator() const;
Djs_object.h616 bool IsJSArrayIterator() const;
Djs_hclass.h1185 inline bool IsJSArrayIterator() const in IsJSArrayIterator() function
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_iterator_test.cpp70 EXPECT_TRUE(iter->IsJSArrayIterator()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h479 if (src->IsJSArrayIterator() || src->IsJSMapIterator() || src->IsJSSetIterator() || in RuntimeStArraySpread()
2409 if (jsArray->IsStableJSArray(thread) && itor->IsJSArrayIterator()) { in RuntimeGetCallSpreadArgs()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp516 return JSNApiHelper::ToJSTaggedValue(this).IsJSArrayIterator(); in IsArrayIterator()