HomeSort by relevance Sort by last modified time
    Searched defs:HashFunctions (Results 1 - 5 of 5) 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...]
RefPtrHashMap.h 52 typedef HashArg HashFunctions;
55 HashFunctions, ValueTraits, KeyTraits> HashTableType;
57 typedef HashMapTranslator<ValueTraits, HashFunctions>
HashMap.h 63 typedef HashArg HashFunctions;
66 HashFunctions, ValueTraits, KeyTraits> HashTableType;
225 template<typename ValueTraits, typename HashFunctions>
227 template<typename T> static unsigned hash(const T& key) { return HashFunctions::hash(key); }
228 template<typename T, typename U> static bool equal(const T& a, const U& b) { return HashFunctions::equal(a, b); }
341 return m_impl.template add<HashMapTranslator<ValueTraits, HashFunctions> >(key, mapped);
417 if (HashFunctions::safeToCompareToEmptyOrDeleted) {
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;
500 template<typename HashFunctions>
502 template<typename T> static unsigned hash(const T& key) { return HashFunctions::hash(key); }
503 template<typename T, typename U> static bool equal(const T& a, const U& b) { return HashFunctions::equal(a->m_value, b); }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
CompositorAnimationsTest.cpp 47 #include "wtf/HashFunctions.h"
252 typedef DefaultHash<CSSPropertyID>::Hash HashFunctions;
257 EXPECT_LT(HashFunctions::hash(CSSPropertyColor), HashFunctions::hash(CSSPropertyOpacity));
262 EXPECT_GT(HashFunctions::hash(CSSPropertyWebkitTransform), HashFunctions::hash(CSSPropertyWidth));
    [all...]

Completed in 48 milliseconds