Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_map.cpp77 if (!self->IsJSMap()) { in Set()
99 if (!self->IsJSMap()) { in Clear()
115 if (!self->IsJSMap()) { in Delete()
133 if (!self->IsJSMap()) { in Has()
150 if (!self->IsJSMap()) { in Get()
167 if (!self->IsJSMap()) { in ForEach()
227 if (!self->IsJSMap()) { in GetSize()
/arkcompiler/ets_runtime/ecmascript/
Djs_map.h25 CAST_CHECK(JSMap, IsJSMap);
Djs_object-inl.h108 inline bool JSObject::IsJSMap() const in IsJSMap() function
110 return GetJSHClass()->IsJSMap(); in IsJSMap()
Djs_map_iterator.cpp116 if (!obj->IsJSMap()) { in CreateMapIterator()
Djs_tagged_value-inl.h995 inline bool JSTaggedValue::IsJSMap() const in IsJSMap() function
997 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSMap(); in IsJSMap()
Djs_tagged_value.h449 bool IsJSMap() const;
Djs_object.h600 bool IsJSMap() const;
Dobject_operator.cpp342 if (receiver.IsJSMap() || receiver == env->GetTaggedMapPrototype()) { in UpdateDetector()
Djs_hclass.h870 bool IsJSMap() const in IsJSMap() function
/arkcompiler/ets_runtime/ecmascript/serializer/tests/
Dserializer_test.cpp502 EXPECT_TRUE(res->IsJSMap()) << "[NotJSMap] Deserialize JSMap fail"; in JSMapTest()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_serializer_test.cpp493 EXPECT_TRUE(res->IsJSMap()) << "[NotJSMap] Deserialize JSMap fail"; in JSMapTest()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp486 return JSNApiHelper::ToJSTaggedValue(this).IsJSMap(); in IsMap()