Home
last modified time | relevance | path

Searched refs:IsJSAPIDeque (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_deque.cpp61 if (!self->IsJSAPIDeque()) { in InsertFront()
62 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIDeque()) { in InsertFront()
86 if (!self->IsJSAPIDeque()) { in InsertEnd()
87 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIDeque()) { in InsertEnd()
110 if (!self->IsJSAPIDeque()) { in GetFirst()
111 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIDeque()) { in GetFirst()
133 if (!self->IsJSAPIDeque()) { in GetLast()
134 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIDeque()) { in GetLast()
156 if (!self->IsJSAPIDeque()) { in Has()
157 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIDeque()) { in Has()
[all …]
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_deque.h38 ASSERT(JSTaggedValue(object).IsJSAPIDeque()); in Cast()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dcontainers_stub_builder.h92 return IsJSAPIDeque(obj); in IsContainer()
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_deque_test.cpp131 ASSERT_TRUE(result.IsJSAPIDeque()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h741 inline bool JSTaggedValue::IsJSAPIDeque() const in IsJSAPIDeque() function
743 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSAPIDeque(); in IsJSAPIDeque()
Djs_tagged_value.h653 bool IsJSAPIDeque() const;
Djs_hclass.h919 inline bool IsJSAPIDeque() const in IsJSAPIDeque() function
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h329 GateRef IsJSAPIDeque(GateRef obj);
Dstub_builder-inl.h1195 inline GateRef StubBuilder::IsJSAPIDeque(GateRef obj) in IsJSAPIDeque() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp3411 return JSNApiHelper::ToJSTaggedValue(this).IsJSAPIDeque(); in IsDeque()