Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Djs_array_iterator.h25 CAST_CHECK(JSArrayIterator, IsJSArrayIterator);
Djs_array_iterator.cpp39 if (!thisObj->IsJSArrayIterator()) { in NextInternal()
Djs_object-inl.h192 inline bool JSObject::IsJSArrayIterator() const in IsJSArrayIterator() function
194 return GetJSHClass()->IsJSArrayIterator(); in IsJSArrayIterator()
Djs_tagged_value-inl.h1065 inline bool JSTaggedValue::IsJSArrayIterator() const in IsJSArrayIterator() function
1067 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSArrayIterator(); in IsJSArrayIterator()
Djs_tagged_value.h577 bool IsJSArrayIterator() const;
Djs_object.h634 bool IsJSArrayIterator() const;
Djs_hclass.h1372 inline bool IsJSArrayIterator() const in IsJSArrayIterator() function
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_iterator_test.cpp46 EXPECT_TRUE(iter->IsJSArrayIterator()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h514 if (src->IsJSArrayIterator() || src->IsJSMapIterator() || src->IsJSSetIterator() || in RuntimeStArraySpread()
2613 if (jsArray->IsStableJSArray(thread) && itor->IsJSArrayIterator()) { in RuntimeGetCallSpreadArgs()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_array.cpp242 if (newArrayHandle->IsJSArray() && items->IsJSArray() && iterator->IsJSArrayIterator()) { in From()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp604 return JSNApiHelper::ToJSTaggedValue(this).IsJSArrayIterator(); in IsArrayIterator()