Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_queue.cpp58 if (!self->IsJSAPIQueue()) { in Add()
59 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIQueue()) { in Add()
81 if (!self->IsJSAPIQueue()) { in GetFirst()
82 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIQueue()) { in GetFirst()
104 if (!self->IsJSAPIQueue()) { in Pop()
105 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIQueue()) { in Pop()
128 if (!thisHandle->IsJSAPIQueue()) { in ForEach()
129 … if (thisHandle->IsJSProxy() && JSHandle<JSProxy>::Cast(thisHandle)->GetTarget().IsJSAPIQueue()) { in ForEach()
185 if (!self->IsJSAPIQueue()) { in GetIteratorObj()
186 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIQueue()) { in GetIteratorObj()
[all …]
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_queue.h28 ASSERT(JSTaggedValue(object).IsJSAPIQueue()); in Cast()
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_queue_test.cpp112 ASSERT_TRUE(result.IsJSAPIQueue()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dcontainers_stub_builder.h90 return IsJSAPIQueue(obj); in IsContainer()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h736 inline bool JSTaggedValue::IsJSAPIQueue() const in IsJSAPIQueue() function
738 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSAPIQueue(); in IsJSAPIQueue()
Djs_tagged_value.h649 bool IsJSAPIQueue() const;
Djs_hclass.h952 inline bool IsJSAPIQueue() const in IsJSAPIQueue() function
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h328 GateRef IsJSAPIQueue(GateRef obj);
Dstub_builder-inl.h1189 inline GateRef StubBuilder::IsJSAPIQueue(GateRef obj) in IsJSAPIQueue() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp3456 return JSNApiHelper::ToJSTaggedValue(this).IsJSAPIQueue(); in IsQueue()