Home
last modified time | relevance | path

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

/external/llvm/include/llvm/ADT/
DScopedHashTable.h114 class ScopedHashTableIterator {
117 ScopedHashTableIterator(ScopedHashTableVal<K, V> *node) : Node(node) {} in ScopedHashTableIterator() function
127 bool operator==(const ScopedHashTableIterator &RHS) const {
130 bool operator!=(const ScopedHashTableIterator &RHS) const {
134 inline ScopedHashTableIterator& operator++() { // Preincrement
139 ScopedHashTableIterator operator++(int) { // Postincrement
140 ScopedHashTableIterator tmp = *this; ++*this; return tmp;
191 typedef ScopedHashTableIterator<K, V, KInfo> iterator;