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