Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DScopedHashTable.h119 class ScopedHashTableIterator {
123 ScopedHashTableIterator(ScopedHashTableVal<K, V> *node) : Node(node) {} in ScopedHashTableIterator() function
133 bool operator==(const ScopedHashTableIterator &RHS) const {
136 bool operator!=(const ScopedHashTableIterator &RHS) const {
140 inline ScopedHashTableIterator& operator++() { // Preincrement
145 ScopedHashTableIterator operator++(int) { // Postincrement
146 ScopedHashTableIterator tmp = *this; ++*this; return tmp;
199 using iterator = ScopedHashTableIterator<K, V, KInfo>;