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().IsJSAPIStack()) { in IsEmpty()
79 if (!self->IsJSAPIStack()) { in Push()
80 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIStack()) { in Push()
102 if (!self->IsJSAPIStack()) { in Peek()
103 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIStack()) { in Peek()
126 if (!self->IsJSAPIStack()) { in Locate()
127 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIStack()) { in Locate()
150 if (!self->IsJSAPIStack()) { in Pop()
151 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.h78 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.h569 inline bool JSTaggedValue::IsJSAPIStack() const in IsJSAPIStack() function
571 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSAPIStack(); in IsJSAPIStack()
Djs_tagged_value.h666 bool IsJSAPIStack() const;
Djs_hclass.h1218 inline bool IsJSAPIStack() const in IsJSAPIStack() function
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h459 GateRef IsJSAPIStack(GateRef obj);
Dstub_builder-inl.h1629 inline GateRef StubBuilder::IsJSAPIStack(GateRef obj) in IsJSAPIStack() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp1064 return JSNApiHelper::ToJSTaggedValue(this).IsJSAPIStack(); in IsStack()