Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_vector.cpp59 if (!self->IsJSAPIVector()) { in Add()
60 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIVector()) { in Add()
81 if (!self->IsJSAPIVector()) { in Insert()
82 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIVector()) { in Insert()
108 if (!self->IsJSAPIVector()) { in SetLength()
109 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIVector()) { in SetLength()
135 if (!self->IsJSAPIVector()) { in GetCapacity()
136 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIVector()) { in GetCapacity()
156 if (!self->IsJSAPIVector()) { in IncreaseCapacityTo()
157 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIVector()) { in IncreaseCapacityTo()
[all …]
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_vector_iterator.cpp48 ASSERT(vector->IsJSAPIVector()); in Next()
Djs_api_vector.h28 ASSERT(JSTaggedValue(object).IsJSAPIVector()); in Cast()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dcontainers_stub_builder.h84 return IsJSAPIVector(obj); in IsContainer()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h761 inline bool JSTaggedValue::IsJSAPIVector() const in IsJSAPIVector() function
763 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSAPIVector(); in IsJSAPIVector()
Djs_tagged_value.h647 bool IsJSAPIVector() const;
Djs_hclass.h993 inline bool IsJSAPIVector() const in IsJSAPIVector() function
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_vector_test.cpp149 ASSERT_TRUE(result.IsJSAPIVector()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h325 GateRef IsJSAPIVector(GateRef attr);
Dstub_builder-inl.h1171 inline GateRef StubBuilder::IsJSAPIVector(GateRef obj) in IsJSAPIVector() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp3476 return JSNApiHelper::ToJSTaggedValue(this).IsJSAPIVector(); in IsVector()