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

  /external/webkit/JavaScriptCore/wtf/
HashIterators.h 58 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > {
65 HashTableIteratorAdapter(const typename HashTableType::iterator& impl) : m_impl(impl) {}
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;
HashTable.h     [all...]

Completed in 23 milliseconds