Searched defs:HashFunctions (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashSet.h40 typedef HashArg HashFunctions; typedef in class:WTF::HashSet
51 HashFunctions, ValueTraits, ValueTraits, Allocator> HashTableType;
168 template<typename Value, typename HashFunctions, typename Traits, typename Allocator>
169 inline bool HashSet<Value, HashFunctions, Traits, Allocator>::contains(ValuePeekInType value) const
174 template<typename Value, typename HashFunctions, typename Traits, typename Allocator>
176 typename HashSet<Value, HashFunctions, Traits, Allocator>::iterator
177 inline HashSet<Value, HashFunctions, Traits, Allocator>::find(const T& value) const
182 template<typename Value, typename HashFunctions, typename Traits, typename Allocator>
184 inline bool HashSet<Value, HashFunctions, Traits, Allocator>::contains(const T& value) const
195 template<typename Value, typename HashFunctions, typenam
[all...]
H A DHashMap.h72 typedef HashArg HashFunctions; typedef in class:WTF::HashMap
75 HashFunctions, ValueTraits, KeyTraits, Allocator> HashTableType;
247 template<typename ValueTraits, typename HashFunctions>
249 template<typename T> static unsigned hash(const T& key) { return HashFunctions::hash(key); }
250 template<typename T, typename U> static bool equal(const T& a, const U& b) { return HashFunctions::equal(a, b); }
357 return m_impl.template add<HashMapTranslator<ValueTraits, HashFunctions> >(key, mapped);
433 if (HashFunctions::safeToCompareToEmptyOrDeleted) {
H A DListHashSet.h42 template<typename Value, size_t inlineCapacity, typename HashFunctions, typename Allocator> class ListHashSet;
91 typedef HashArg HashFunctions; typedef in class:WTF::ListHashSet
651 template<typename HashFunctions>
653 template<typename T> static unsigned hash(const T& key) { return HashFunctions::hash(key); }
654 template<typename T, typename U> static bool equal(const T& a, const U& b) { return HashFunctions::equal(a->m_value, b); }

Completed in 92 milliseconds