Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_set.cpp115 if (!self->IsJSSet()) { in Add()
136 if (!self->IsJSSet()) { in Clear()
154 if (!self->IsJSSet()) { in Delete()
174 if (!self->IsJSSet()) { in Has()
192 if (!self->IsJSSet()) { in ForEach()
252 if (!self->IsJSSet()) { in GetSize()
/arkcompiler/ets_runtime/ecmascript/
Djs_set.h25 CAST_CHECK(JSSet, IsJSSet);
Djs_set_iterator.cpp105 if (!obj->IsJSSet()) { in CreateSetIterator()
Djs_object-inl.h101 inline bool JSObject::IsJSSet() const in IsJSSet() function
103 return GetJSHClass()->IsJSSet(); in IsJSSet()
Djs_tagged_value-inl.h975 inline bool JSTaggedValue::IsJSSet() const in IsJSSet() function
977 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSSet(); in IsJSSet()
Djs_tagged_value.h506 bool IsJSSet() const;
Djs_object.h538 bool IsJSSet() const;
Djs_hclass.h768 bool IsJSSet() const in IsJSSet() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp3154 return JSNApiHelper::ToJSTaggedValue(this).IsJSSet(); in IsSet()