OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HashTableConstIteratorAdapter
(Results
1 - 4
of
4
) 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
...]
HashSet.h
54
typedef
HashTableConstIteratorAdapter
<HashTableType, ValueTraits> iterator;
55
typedef
HashTableConstIteratorAdapter
<HashTableType, ValueTraits> const_iterator;
HashMap.h
82
typedef
HashTableConstIteratorAdapter
<HashTableType, ValueType> const_iterator;
Completed in 56 milliseconds