Home | History | Annotate | Download | only in wtf

Lines Matching defs:HashFunctions

29     template<typename Value, typename HashFunctions, typename Traits> class HashSet;
30 template<typename Value, typename HashFunctions, typename Traits>
31 void deleteAllValues(const HashSet<Value, HashFunctions, Traits>&);
32 template<typename Value, typename HashFunctions, typename Traits>
33 void fastDeleteAllValues(const HashSet<Value, HashFunctions, Traits>&);
41 typedef HashArg HashFunctions;
49 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
169 template<typename Value, typename HashFunctions, typename Traits>
171 inline bool HashSet<Value, HashFunctions, Traits>::contains(const T& value) const
183 template<typename Value, typename HashFunctions, typename Traits>
185 inline pair<typename HashSet<Value, HashFunctions, Traits>::iterator, bool>
186 HashSet<Value, HashFunctions, Traits>::add(const T& value)