Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_arraylist.cpp55 if (!self->IsJSAPIArrayList()) { in Add()
56 … if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget(thread).IsJSAPIArrayList()) { in Add()
77 if (!self->IsJSAPIArrayList()) { in Insert()
78 … if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget(thread).IsJSAPIArrayList()) { in Insert()
116 if (!self->IsJSAPIArrayList()) { in Clear()
117 … if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget(thread).IsJSAPIArrayList()) { in Clear()
139 if (!self->IsJSAPIArrayList()) { in Clone()
140 … if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget(thread).IsJSAPIArrayList()) { in Clone()
162 if (!self->IsJSAPIArrayList()) { in Has()
163 … if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget(thread).IsJSAPIArrayList()) { in Has()
[all …]
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_arraylist_iterator.cpp50 if (arrayList->IsJSAPIArrayList()) { in Next()
Djs_api_arraylist.h32 ASSERT(JSTaggedValue(object).IsJSAPIArrayList()); in Cast()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dcontainers_stub_builder.h99 return IsJSAPIArrayList(glue, obj); in IsContainer()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h543 inline bool JSTaggedValue::IsJSAPIArrayList() const in IsJSAPIArrayList() function
545 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSAPIArrayList(); in IsJSAPIArrayList()
Djs_tagged_value.h683 bool IsJSAPIArrayList() const;
Djs_hclass.h1234 inline bool IsJSAPIArrayList() const in IsJSAPIArrayList() function
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_arraylist_test.cpp177 ASSERT_TRUE(result.IsJSAPIArrayList()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h524 GateRef IsJSAPIArrayList(GateRef glue, GateRef obj);
Dstub_builder-inl.h1813 inline GateRef StubBuilder::IsJSAPIArrayList(GateRef glue, GateRef obj) in IsJSAPIArrayList() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp1015 return JSNApiHelper::ToJSTaggedValue(this).IsJSAPIArrayList(); in IsArrayList()