Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallSet.h33 class SmallSetIterator
34 : public iterator_facade_base<SmallSetIterator<T, N, C>,
39 using SelfTy = SmallSetIterator<T, N, C>;
51 SmallSetIterator(SetIterTy SetIter) : SetIter(SetIter), IsSmall(false) {} in SmallSetIterator() function
53 SmallSetIterator(VecIterTy VecIter) : VecIter(VecIter), IsSmall(true) {} in SmallSetIterator() function
57 ~SmallSetIterator() { in ~SmallSetIterator()
64 SmallSetIterator(const SmallSetIterator &Other) : IsSmall(Other.IsSmall) { in SmallSetIterator() function
73 SmallSetIterator(SmallSetIterator &&Other) : IsSmall(Other.IsSmall) { in SmallSetIterator() function
82 SmallSetIterator& operator=(const SmallSetIterator& Other) {
96 SmallSetIterator& operator=(SmallSetIterator&& Other) {
[all …]