reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/SmallSet.h
   58     if (isSmall)
   64   SmallSetIterator(const SmallSetIterator &Other) : isSmall(Other.isSmall) {
   65     if (isSmall)
   73   SmallSetIterator(SmallSetIterator &&Other) : isSmall(Other.isSmall) {
   74     if (isSmall)
   85     if (!isSmall)
   88     isSmall = Other.isSmall;
   89     if (isSmall)
   99     if (!isSmall)
  102     isSmall = Other.isSmall;
  102     isSmall = Other.isSmall;
  103     if (isSmall)
  111     if (isSmall != RHS.isSmall)
  111     if (isSmall != RHS.isSmall)
  113     if (isSmall)
  119     if (isSmall)
  126   const T &operator*() const { return isSmall ? *VecIter : *SetIter; }