Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_stack.cpp56 if (!self->IsJSAPIStack()) { in IsEmpty()
57 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget(thread).IsJSAPIStack()) { in IsEmpty()
79 if (!self->IsJSAPIStack()) { in Push()
80 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget(thread).IsJSAPIStack()) { in Push()
102 if (!self->IsJSAPIStack()) { in Peek()
103 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget(thread).IsJSAPIStack()) { in Peek()
126 if (!self->IsJSAPIStack()) { in Locate()
127 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget(thread).IsJSAPIStack()) { in Locate()
150 if (!self->IsJSAPIStack()) { in Pop()
151 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget(thread).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.h78 return IsJSAPIStack(glue, obj); in IsContainer()
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_stack_test.cpp132 ASSERT_TRUE(result.IsJSAPIStack()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h598 inline bool JSTaggedValue::IsJSAPIStack() const in IsJSAPIStack() function
600 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSAPIStack(); in IsJSAPIStack()
Djs_tagged_value.h708 bool IsJSAPIStack() const;
Djs_hclass.h1259 inline bool IsJSAPIStack() const in IsJSAPIStack() function
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h513 GateRef IsJSAPIStack(GateRef glue, GateRef obj);
Dstub_builder-inl.h1747 inline GateRef StubBuilder::IsJSAPIStack(GateRef glue, GateRef obj) in IsJSAPIStack() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp1081 return JSNApiHelper::ToJSTaggedValue(this).IsJSAPIStack(); in IsStack()