Searched refs:HashTableIteratorAdapter (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashIterators.h59 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > { struct in namespace:WTF
66 HashTableIteratorAdapter() {} function in struct:WTF::HashTableIteratorAdapter
67 HashTableIteratorAdapter(const typename HashTableType::iterator& impl) : m_impl(impl) {} function in struct:WTF::HashTableIteratorAdapter
73 HashTableIteratorAdapter& operator++() { ++m_impl; return *this; }
123 typedef HashTableIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > Iterator;
146 typedef HashTableIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > Iterator;
H A DHashTable.h1302 template<typename HashTableType, typename Traits> struct HashTableIteratorAdapter { struct in namespace:WTF
1306 HashTableIteratorAdapter() {} function in struct:WTF::HashTableIteratorAdapter
1307 HashTableIteratorAdapter(const typename HashTableType::iterator& impl) : m_impl(impl) {} function in struct:WTF::HashTableIteratorAdapter
1313 HashTableIteratorAdapter& operator++() { ++m_impl; return *this; }
1338 inline bool operator==(const HashTableIteratorAdapter<T, U>& a, const HashTableIteratorAdapter<T, U>& b) argument
1344 inline bool operator!=(const HashTableIteratorAdapter<T, U>& a, const HashTableIteratorAdapter<T, U>& b) argument
1351 inline bool operator==(const HashTableConstIteratorAdapter<T, U>& a, const HashTableIteratorAdapter<T, U>& b) argument
1357 inline bool operator!=(const HashTableConstIteratorAdapter<T, U>& a, const HashTableIteratorAdapter< argument
1363 operator ==(const HashTableIteratorAdapter<T, U>& a, const HashTableConstIteratorAdapter<T, U>& b) argument
1369 operator !=(const HashTableIteratorAdapter<T, U>& a, const HashTableConstIteratorAdapter<T, U>& b) argument
[all...]
H A DHashMap.h81 typedef HashTableIteratorAdapter<HashTableType, ValueType> iterator;

Completed in 423 milliseconds