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.cpp38 if (!input->IsJSArrayIterator()) { in Next()
Djs_object-inl.h176 inline bool JSObject::IsJSArrayIterator() const in IsJSArrayIterator() function
178 return GetJSHClass()->IsJSArrayIterator(); in IsJSArrayIterator()
Djs_tagged_value-inl.h1155 inline bool JSTaggedValue::IsJSArrayIterator() const in IsJSArrayIterator() function
1157 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSArrayIterator(); in IsJSArrayIterator()
Djs_tagged_value.h586 bool IsJSArrayIterator() const;
Djs_object.h553 bool IsJSArrayIterator() const;
Djs_hclass.h1068 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.h458 if (src->IsJSArrayIterator() || src->IsJSMapIterator() || src->IsJSSetIterator() || in RuntimeStArraySpread()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp3179 return JSNApiHelper::ToJSTaggedValue(this).IsJSArrayIterator(); in IsArrayIterator()