Home
last modified time | relevance | path

Searched refs:IsJSAPILinkedListIterator (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_linked_list_iterator.h27 ASSERT(JSTaggedValue(obj).IsJSAPILinkedListIterator()); in Cast()
Djs_api_linked_list_iterator.cpp38 if (!input->IsJSAPILinkedListIterator()) { in Next()
/arkcompiler/ets_runtime/ecmascript/
Djs_object-inl.h208 inline bool JSObject::IsJSAPILinkedListIterator() const in IsJSAPILinkedListIterator() function
210 return GetJSHClass()->IsJSAPILinkedListIterator(); in IsJSAPILinkedListIterator()
Djs_tagged_value-inl.h806 inline bool JSTaggedValue::IsJSAPILinkedListIterator() const in IsJSAPILinkedListIterator() function
808 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSAPILinkedListIterator(); in IsJSAPILinkedListIterator()
Djs_tagged_value.h610 bool IsJSAPILinkedListIterator() const;
Djs_object.h620 bool IsJSAPILinkedListIterator() const;
Djs_hclass.h1205 inline bool IsJSAPILinkedListIterator() const in IsJSAPILinkedListIterator() function
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_linked_list_test.cpp438 EXPECT_TRUE(iterValues->IsJSAPILinkedListIterator()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp756 return JSNApiHelper::ToJSTaggedValue(this).IsJSAPILinkedListIterator(); in IsLinkedListIterator()