Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_set.cpp115 if (!self->IsJSSet()) { in Add()
135 if (!self->IsJSSet()) { in Clear()
152 if (!self->IsJSSet()) { in Delete()
171 if (!self->IsJSSet()) { in Has()
188 if (!self->IsJSSet()) { in ForEach()
248 if (!self->IsJSSet()) { in GetSize()
/arkcompiler/ets_runtime/ecmascript/
Djs_set.h25 CAST_CHECK(JSSet, IsJSSet);
Djs_set_iterator.cpp109 if (!obj->IsJSSet()) { in CreateSetIterator()
Djs_object-inl.h113 inline bool JSObject::IsJSSet() const in IsJSSet() function
115 return GetJSHClass()->IsJSSet(); in IsJSSet()
Djs_tagged_value-inl.h1010 inline bool JSTaggedValue::IsJSSet() const in IsJSSet() function
1012 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSSet(); in IsJSSet()
Djs_tagged_value.h450 bool IsJSSet() const;
Djs_object.h601 bool IsJSSet() const;
Dobject_operator.cpp347 } else if (receiver.IsJSSet() || receiver == env->GetTaggedSetPrototype()) { in UpdateDetector()
Djs_hclass.h865 bool IsJSSet() const in IsJSSet() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp491 return JSNApiHelper::ToJSTaggedValue(this).IsJSSet(); in IsSet()