Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_queue.cpp55 if (!self->IsJSAPIQueue()) { in Add()
56 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget(thread).IsJSAPIQueue()) { in Add()
78 if (!self->IsJSAPIQueue()) { in GetFirst()
79 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget(thread).IsJSAPIQueue()) { in GetFirst()
101 if (!self->IsJSAPIQueue()) { in Pop()
102 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget(thread).IsJSAPIQueue()) { in Pop()
125 if (!thisHandle->IsJSAPIQueue()) { in ForEach()
126 …thisHandle->IsJSProxy() && JSHandle<JSProxy>::Cast(thisHandle)->GetTarget(thread).IsJSAPIQueue()) { in ForEach()
182 if (!self->IsJSAPIQueue()) { in GetIteratorObj()
183 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget(thread).IsJSAPIQueue()) { in GetIteratorObj()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dcontainers_queue_stub_builder.cpp52 BRANCH(IsJSAPIQueue(glue, *thisObj), &valueIsJSAPIQueue, &valueNotJSAPIQueue); in ForEach()
59 BRANCH(IsJSAPIQueue(glue, tempObj), &objIsJSAPIQueue, slowPath); in ForEach()
Dcontainers_stub_builder.h82 return IsJSAPIQueue(glue, obj); in IsContainer()
/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/
Djs_tagged_value-inl.h578 inline bool JSTaggedValue::IsJSAPIQueue() const in IsJSAPIQueue() function
580 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSAPIQueue(); in IsJSAPIQueue()
Djs_tagged_value.h702 bool IsJSAPIQueue() const;
Djs_hclass.h1296 inline bool IsJSAPIQueue() const in IsJSAPIQueue() function
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h515 GateRef IsJSAPIQueue(GateRef glue, GateRef obj);
Dstub_builder-inl.h1759 inline GateRef StubBuilder::IsJSAPIQueue(GateRef glue, GateRef obj) in IsJSAPIQueue() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp1075 return JSNApiHelper::ToJSTaggedValue(this).IsJSAPIQueue(); in IsQueue()