Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_stack.cpp61 if (!self->IsJSAPIStack()) { in IsEmpty()
62 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIStack()) { in IsEmpty()
84 if (!self->IsJSAPIStack()) { in Push()
85 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIStack()) { in Push()
107 if (!self->IsJSAPIStack()) { in Peek()
108 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIStack()) { in Peek()
131 if (!self->IsJSAPIStack()) { in Locate()
132 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIStack()) { in Locate()
155 if (!self->IsJSAPIStack()) { in Pop()
156 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIStack()) { in Pop()
[all …]
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_stack.h28 ASSERT(JSTaggedValue(object).IsJSAPIStack()); in Cast()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dcontainers_stub_builder.h86 return IsJSAPIStack(obj); in IsContainer()
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_stack_test.cpp131 ASSERT_TRUE(result.IsJSAPIStack()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h756 inline bool JSTaggedValue::IsJSAPIStack() const in IsJSAPIStack() function
758 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSAPIStack(); in IsJSAPIStack()
Djs_tagged_value.h655 bool IsJSAPIStack() const;
Djs_hclass.h915 inline bool IsJSAPIStack() const in IsJSAPIStack() function
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h326 GateRef IsJSAPIStack(GateRef obj);
Dstub_builder-inl.h1177 inline GateRef StubBuilder::IsJSAPIStack(GateRef obj) in IsJSAPIStack() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp3461 return JSNApiHelper::ToJSTaggedValue(this).IsJSAPIStack(); in IsStack()