Searched refs:HashTableType (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/
H A DHashIterators.h31 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, std::pair<KeyType, MappedType> > {
40 typedef HashTableConstKeysIterator<HashTableType, KeyType, MappedType> Keys;
41 typedef HashTableConstValuesIterator<HashTableType, KeyType, MappedType> Values;
43 HashTableConstIteratorAdapter(const typename HashTableType::const_iterator& impl) : m_impl(impl) {}
55 typename HashTableType
[all...]
H A DHashSet.h49 HashFunctions, ValueTraits, ValueTraits> HashTableType; typedef in class:WTF::HashSet
52 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> iterator;
53 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> const_iterator;
95 HashTableType m_impl;
213 template<typename ValueType, typename HashTableType>
214 void deleteAllValues(HashTableType& collection)
216 typedef typename HashTableType::const_iterator iterator;
228 template<typename ValueType, typename HashTableType>
229 void fastDeleteAllValues(HashTableType& collection)
231 typedef typename HashTableType
[all...]
H A DHashMap.h48 HashFunctions, ValueTraits, KeyTraits> HashTableType; typedef in class:WTF::HashMap
51 typedef HashTableIteratorAdapter<HashTableType, ValueType> iterator;
52 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> const_iterator;
109 HashTableType m_impl;
277 ValueType* entry = const_cast<HashTableType&>(m_impl).lookup(key);
349 template<typename MappedType, typename HashTableType>
350 void deleteAllPairSeconds(HashTableType& collection)
352 typedef typename HashTableType::const_iterator iterator;
364 template<typename KeyType, typename HashTableType>
365 void deleteAllPairFirsts(HashTableType
[all...]
H A DHashTable.h97 typedef HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits> HashTableType; typedef in class:WTF::HashTableConstIterator
109 while (m_position != m_endPosition && HashTableType::isEmptyOrDeletedBucket(*m_position))
113 HashTableConstIterator(const HashTableType* table, PointerType position, PointerType endPosition)
120 HashTableConstIterator(const HashTableType* table, PointerType position, PointerType endPosition, HashItemKnownGoodTag)
216 mutable const HashTableType* m_table;
225 typedef HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits> HashTableType; typedef in class:WTF::HashTableIterator
234 HashTableIterator(HashTableType* table, PointerType pos, PointerType end) : m_iterator(table, pos, end) { }
235 HashTableIterator(HashTableType* table, PointerType pos, PointerType end, HashItemKnownGoodTag tag) : m_iterator(table, pos, end, tag) { }
1090 typedef HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits> HashTableType; typedef
1122 template<typename HashTableType, typenam
[all...]
H A DRefPtrHashMap.h65 HashFunctions, ValueTraits, KeyTraits> HashTableType; typedef in class:WTF::HashMap
71 typedef HashTableIteratorAdapter<HashTableType, ValueType> iterator;
72 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> const_iterator;
120 HashTableType m_impl;
264 ValueType* entry = const_cast<HashTableType&>(m_impl).lookup(key);
274 ValueType* entry = const_cast<HashTableType&>(m_impl).template lookup<RawKeyType, RawKeyTranslator>(key);
H A DListHashSet.h689 template<bool, typename ValueType, typename HashTableType>
690 void deleteAllValues(HashTableType& collection)
692 typedef typename HashTableType::const_iterator iterator;

Completed in 1428 milliseconds