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

References

include/llvm/ADT/ScopedHashTable.h
  132   bool operator==(const ScopedHashTableIterator &RHS) const {
  135   bool operator!=(const ScopedHashTableIterator &RHS) const {
  139   inline ScopedHashTableIterator& operator++() {          // Preincrement
  144   ScopedHashTableIterator operator++(int) {        // Postincrement
  145     ScopedHashTableIterator tmp = *this; ++*this; return tmp;
  198   using iterator = ScopedHashTableIterator<K, V, KInfo>;