Home
last modified time | relevance | path

Searched refs:IsJSAPILightWeightSet (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_lightweightset.cpp62 if (!self->IsJSAPILightWeightSet()) { in Add()
63 … if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPILightWeightSet()) { in Add()
83 if (!self->IsJSAPILightWeightSet()) { in AddAll()
84 … if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPILightWeightSet()) { in AddAll()
94 if (!value->IsJSAPILightWeightSet()) { in AddAll()
95 … if (value->IsJSProxy() && JSHandle<JSProxy>::Cast(value)->GetTarget().IsJSAPILightWeightSet()) { in AddAll()
117 if (!self->IsJSAPILightWeightSet()) { in IsEmpty()
118 … if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPILightWeightSet()) { in IsEmpty()
137 if (!self->IsJSAPILightWeightSet()) { in GetValueAt()
138 … if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPILightWeightSet()) { in GetValueAt()
[all …]
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_lightweightset_iterator.cpp51 if (lightWeightSet->IsJSAPILightWeightSet()) { in Next()
Djs_api_lightweightset.h29 ASSERT(JSTaggedValue(object).IsJSAPILightWeightSet()); in Cast()
Djs_api_lightweightset.cpp254 if (value.GetTaggedValue().IsJSAPILightWeightSet()) { in Equal()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dcontainers_stub_builder.h96 return IsJSAPILightWeightSet(obj); in IsContainer()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h751 inline bool JSTaggedValue::IsJSAPILightWeightSet() const in IsJSAPILightWeightSet() function
753 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSAPILightWeightSet(); in IsJSAPILightWeightSet()
Djs_tagged_value.h641 bool IsJSAPILightWeightSet() const;
Djs_hclass.h907 inline bool IsJSAPILightWeightSet() const in IsJSAPILightWeightSet() function
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_lightweightset_test.cpp125 ASSERT_TRUE(result.IsJSAPILightWeightSet()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h331 GateRef IsJSAPILightWeightSet(GateRef obj);
Dstub_builder-inl.h1207 inline GateRef StubBuilder::IsJSAPILightWeightSet(GateRef obj) in IsJSAPILightWeightSet() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp3431 return JSNApiHelper::ToJSTaggedValue(this).IsJSAPILightWeightSet(); in IsLightWeightSet()