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

  /external/chromium_org/third_party/WebKit/Source/wtf/
HashSet.h 31 template<typename Value, typename HashFunctions, typename Traits> class HashSet;
32 template<typename Value, typename HashFunctions, typename Traits>
33 void deleteAllValues(const HashSet<Value, HashFunctions, Traits>&);
39 typedef HashArg HashFunctions;
47 HashFunctions, ValueTraits, ValueTraits> HashTableType;
160 template<typename Value, typename HashFunctions, typename Traits>
162 typename HashSet<Value, HashFunctions, Traits>::iterator
163 inline HashSet<Value, HashFunctions, Traits>::find(const T& value) const
168 template<typename Value, typename HashFunctions, typename Traits>
170 inline bool HashSet<Value, HashFunctions, Traits>::contains(const T& value) cons
    [all...]
HashMap.h 62 typedef HashArg HashFunctions;
65 HashFunctions, ValueTraits, KeyTraits> HashTableType;
224 template<typename ValueTraits, typename HashFunctions>
226 template<typename T> static unsigned hash(const T& key) { return HashFunctions::hash(key); }
227 template<typename T, typename U> static bool equal(const T& a, const U& b) { return HashFunctions::equal(a, b); }
340 return m_impl.template add<HashMapTranslator<ValueTraits, HashFunctions> >(key, mapped);
416 if (HashFunctions::safeToCompareToEmptyOrDeleted) {
RefPtrHashMap.h 52 typedef HashArg HashFunctions;
55 HashFunctions, ValueTraits, KeyTraits> HashTableType;
57 typedef HashMapTranslator<ValueTraits, HashFunctions>
ListHashSet.h 41 template<typename Value, size_t inlineCapacity, typename HashFunctions> class ListHashSet;
43 template<typename Value, size_t inlineCapacity, typename HashFunctions>
44 void deleteAllValues(const ListHashSet<Value, inlineCapacity, HashFunctions>&);
71 typedef HashArg HashFunctions;
501 template<typename HashFunctions>
503 template<typename T> static unsigned hash(const T& key) { return HashFunctions::hash(key); }
504 template<typename T, typename U> static bool equal(const T& a, const U& b) { return HashFunctions::equal(a->m_value, b); }
    [all...]

Completed in 753 milliseconds