HomeSort by relevance Sort by last modified time
    Searched defs:HashTableConstIteratorAdapter (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
HashIterators.h 36 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > {
43 HashTableConstIteratorAdapter() {}
44 HashTableConstIteratorAdapter(const typename HashTableType::const_iterator& impl) : m_impl(impl) {}
50 HashTableConstIteratorAdapter& operator++() { ++m_impl; return *this; }
76 operator HashTableConstIteratorAdapter<HashTableType, ValueType>() {
89 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator;
106 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator;
124 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator;
147 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator;
HashTable.h     [all...]

Completed in 1503 milliseconds