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.h196 inline bool JSObject::IsJSAPILinkedListIterator() const in IsJSAPILinkedListIterator() function
198 return GetJSHClass()->IsJSAPILinkedListIterator(); in IsJSAPILinkedListIterator()
Djs_tagged_value-inl.h776 inline bool JSTaggedValue::IsJSAPILinkedListIterator() const in IsJSAPILinkedListIterator() function
778 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSAPILinkedListIterator(); in IsJSAPILinkedListIterator()
Djs_tagged_value.h660 bool IsJSAPILinkedListIterator() const;
Djs_object.h557 bool IsJSAPILinkedListIterator() const;
Djs_hclass.h1088 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.cpp3441 return JSNApiHelper::ToJSTaggedValue(this).IsJSAPILinkedListIterator(); in IsLinkedListIterator()