Lines Matching full:cast
30 JSHandle<JSTaggedValue>::Cast(set)); in Add()
33 …JSHandle<LinkedHashSet> setHandle(thread, LinkedHashSet::Cast(set->GetLinkedSet().GetTaggedObject(… in Add()
41 JSHandle<JSTaggedValue>::Cast(set)); in Delete()
43 …JSHandle<LinkedHashSet> setHandle(thread, LinkedHashSet::Cast(set->GetLinkedSet().GetTaggedObject(… in Delete()
55 JSHandle<JSTaggedValue>::Cast(set)); in Clear()
57 …JSHandle<LinkedHashSet> setHandle(thread, LinkedHashSet::Cast(set->GetLinkedSet().GetTaggedObject(… in Clear()
64 …[[maybe_unused]] ConcurrentApiScope<JSSharedSet> scope(thread, JSHandle<JSTaggedValue>::Cast(set)); in Has()
66 return LinkedHashSet::Cast(set->GetLinkedSet().GetTaggedObject())->Has(thread, value); in Has()
71 …[[maybe_unused]] ConcurrentApiScope<JSSharedSet> scope(thread, JSHandle<JSTaggedValue>::Cast(set)); in GetSize()
73 return LinkedHashSet::Cast(set->GetLinkedSet().GetTaggedObject())->NumberOfElements(); in GetSize()
78 …[[maybe_unused]] ConcurrentApiScope<JSSharedSet> scope(thread, JSHandle<JSTaggedValue>::Cast(set)); in GetValue()
82 return LinkedHashSet::Cast(set->GetLinkedSet().GetTaggedObject())->GetValue(entry); in GetValue()