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

  /external/chromium_org/third_party/WebKit/Source/wtf/
HashCountedSet.h 30 template<typename Value, typename HashFunctions = typename DefaultHash<Value>::Hash,
34 typedef HashMap<Value, unsigned, HashFunctions, Traits> ImplType;
81 template<typename Value, typename HashFunctions, typename Traits>
82 inline void HashCountedSet<Value, HashFunctions, Traits>::swap(HashCountedSet& other)
87 template<typename Value, typename HashFunctions, typename Traits>
88 inline unsigned HashCountedSet<Value, HashFunctions, Traits>::size() const
93 template<typename Value, typename HashFunctions, typename Traits>
94 inline unsigned HashCountedSet<Value, HashFunctions, Traits>::capacity() const
99 template<typename Value, typename HashFunctions, typename Traits>
100 inline bool HashCountedSet<Value, HashFunctions, Traits>::isEmpty() cons
    [all...]
HashTable.h 61 template<typename Key, typename Value, typename Extractor, typename HashFunctions, typename Traits, typename KeyTraits>
63 template<typename Key, typename Value, typename Extractor, typename HashFunctions, typename Traits, typename KeyTraits>
65 template<typename Key, typename Value, typename Extractor, typename HashFunctions, typename Traits, typename KeyTraits>
70 template<typename Key, typename Value, typename Extractor, typename HashFunctions, typename Traits, typename KeyTraits>
73 typedef HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits> HashTableType;
74 typedef HashTableIterator<Key, Value, Extractor, HashFunctions, Traits, KeyTraits> iterator;
75 typedef HashTableConstIterator<Key, Value, Extractor, HashFunctions, Traits, KeyTraits> const_iterator;
80 friend class HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>;
81 friend class HashTableIterator<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>;
145 template<typename Key, typename Value, typename Extractor, typename HashFunctions, typename Traits, typename KeyTraits
    [all...]
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 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...]
RefPtrHashMap.h 52 typedef HashArg HashFunctions;
55 HashFunctions, ValueTraits, KeyTraits> HashTableType;
57 typedef HashMapTranslator<ValueTraits, HashFunctions>
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
make_css_property_names.py 20 #include "wtf/HashFunctions.h"
  /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 62 milliseconds