Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_lightweightmap.cpp68 if (!self->IsJSAPILightWeightMap()) { in Length()
69 … if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPILightWeightMap()) { in Length()
89 if (!self->IsJSAPILightWeightMap()) { in HasAll()
90 … if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPILightWeightMap()) { in HasAll()
100 if (!lightWeightMap->IsJSAPILightWeightMap()) { in HasAll()
102 JSHandle<JSProxy>::Cast(lightWeightMap)->GetTarget().IsJSAPILightWeightMap()) { in HasAll()
126 if (!self->IsJSAPILightWeightMap()) { in HasKey()
127 … if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPILightWeightMap()) { in HasKey()
148 if (!self->IsJSAPILightWeightMap()) { in HasValue()
149 … if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPILightWeightMap()) { in HasValue()
[all …]
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_lightweightmap_iterator.cpp81 if (!obj->IsJSAPILightWeightMap()) { in CreateLightWeightMapIterator()
82 if (obj->IsJSProxy() && JSHandle<JSProxy>::Cast(obj)->GetTarget().IsJSAPILightWeightMap()) { in CreateLightWeightMapIterator()
Djs_api_lightweightmap.h43 ASSERT(JSTaggedValue(object).IsJSAPILightWeightMap()); in Cast()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dcontainers_stub_builder.h94 return IsJSAPILightWeightMap(obj); in IsContainer()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h746 inline bool JSTaggedValue::IsJSAPILightWeightMap() const in IsJSAPILightWeightMap() function
748 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSAPILightWeightMap(); in IsJSAPILightWeightMap()
Djs_tagged_value.h639 bool IsJSAPILightWeightMap() const;
Djs_hclass.h899 inline bool IsJSAPILightWeightMap() const in IsJSAPILightWeightMap() function
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_lightweightmap_test.cpp126 ASSERT_TRUE(result.IsJSAPILightWeightMap()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h330 GateRef IsJSAPILightWeightMap(GateRef obj);
Dstub_builder-inl.h1201 inline GateRef StubBuilder::IsJSAPILightWeightMap(GateRef obj) in IsJSAPILightWeightMap() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp3426 return JSNApiHelper::ToJSTaggedValue(this).IsJSAPILightWeightMap(); in IsLightWeightMap()