HomeSort by relevance Sort by last modified time
    Searched refs:HashTableType (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
HashIterators.h 31 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableConstKeysIterator;
32 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableConstValuesIterator;
33 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableKeysIterator;
34 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableValuesIterator;
36 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > {
40 typedef HashTableConstKeysIterator<HashTableType, KeyType, MappedType> Keys;
41 typedef HashTableConstValuesIterator<HashTableType, KeyType, MappedType> Values;
44 HashTableConstIteratorAdapter(const typename HashTableType::const_iterator& impl) : m_impl(impl) {}
56 typename HashTableType::const_iterator m_impl
    [all...]
HashSet.h 51 HashFunctions, ValueTraits, ValueTraits, Allocator> HashTableType;
54 typedef HashTableConstIteratorAdapter<HashTableType, ValueTraits> iterator;
55 typedef HashTableConstIteratorAdapter<HashTableType, ValueTraits> const_iterator;
56 typedef typename HashTableType::AddResult AddResult;
114 HashTableType m_impl;
HashTable.h 108 typedef HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator> HashTableType;
120 while (m_position != m_endPosition && HashTableType::isEmptyOrDeletedBucket(*m_position))
124 HashTableConstIterator(PointerType position, PointerType endPosition, const HashTableType* container)
135 HashTableConstIterator(PointerType position, PointerType endPosition, const HashTableType* container, HashItemKnownGoodTag)
201 const HashTableType* m_container;
209 typedef HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator> HashTableType;
218 HashTableIterator(PointerType pos, PointerType end, const HashTableType* container) : m_iterator(pos, end, container) { }
219 HashTableIterator(PointerType pos, PointerType end, const HashTableType* container, HashItemKnownGoodTag tag) : m_iterator(pos, end, container, tag) { }
271 template<typename HashTableType, typename ValueType> struct HashTableAddResult {
272 HashTableAddResult(const HashTableType* container, ValueType* storedValue, bool isNewEntry
    [all...]
HashMap.h 75 HashFunctions, ValueTraits, KeyTraits, Allocator> HashTableType;
81 typedef HashTableIteratorAdapter<HashTableType, ValueType> iterator;
82 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> const_iterator;
83 typedef typename HashTableType::AddResult AddResult;
160 HashTableType m_impl;
391 ValueType* entry = const_cast<HashTableType&>(m_impl).lookup(key);
  /frameworks/compile/mclinker/include/mcld/Target/
GNULDBackend.h 518 EntryFactory<SymHashEntryType> > HashTableType;
542 HashTableType* m_pSymIndexMap;
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp 114 m_pSymIndexMap = new HashTableType(1024);
    [all...]

Completed in 77 milliseconds