Searched defs:HashTableIteratorAdapter (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/
H A DHashIterators.h58 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > { struct in namespace:WTF
65 HashTableIteratorAdapter(const typename HashTableType::iterator& impl) : m_impl(impl) {} function in struct:WTF::HashTableIteratorAdapter
71 HashTableIteratorAdapter& operator++() { ++m_impl; return *this; }
121 typedef HashTableIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > Iterator;
144 typedef HashTableIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > Iterator;
H A DHashTable.h1135 template<typename HashTableType, typename ValueType> struct HashTableIteratorAdapter { struct in namespace:WTF
1136 HashTableIteratorAdapter(const typename HashTableType::iterator& impl) : m_impl(impl) {} function in struct:WTF::HashTableIteratorAdapter
1142 HashTableIteratorAdapter& operator++() { ++m_impl; return *this; }
1166 inline bool operator==(const HashTableIteratorAdapter<T, U>& a, const HashTableIteratorAdapter<T, U>& b) argument
1172 inline bool operator!=(const HashTableIteratorAdapter<T, U>& a, const HashTableIteratorAdapter<T, U>& b) argument

Completed in 69 milliseconds