Home | History | Annotate | Download | only in wtf

Lines Matching refs:HashTableIteratorAdapter

1135     template<typename HashTableType, typename ValueType> struct HashTableIteratorAdapter {
1136 HashTableIteratorAdapter(const typename HashTableType::iterator& impl) : m_impl(impl) {}
1142 HashTableIteratorAdapter& operator++() { ++m_impl; return *this; }
1166 inline bool operator==(const HashTableIteratorAdapter<T, U>& a, const HashTableIteratorAdapter<T, U>& b)
1172 inline bool operator!=(const HashTableIteratorAdapter<T, U>& a, const HashTableIteratorAdapter<T, U>& b)