Home | History | Annotate | Download | only in wtf

Lines Matching refs:HashFunctions

42     template<typename Value, size_t inlineCapacity, typename HashFunctions> class ListHashSet;
46 template<typename Value, size_t inlineCapacity, typename HashFunctions>
47 void deleteAllValues(const ListHashSet<Value, inlineCapacity, HashFunctions>&);
69 typedef HashArg HashFunctions;
361 template<typename ValueType, size_t inlineCapacity, typename HashFunctions>
367 static unsigned hash(const ValueType& key) { return HashFunctions::hash(key); }
368 static bool equal(Node* const& a, const ValueType& b) { return HashFunctions::equal(a->m_value, b); }
498 typedef ListHashSetTranslator<ValueType, inlineCapacity, HashFunctions> Translator;
508 typedef ListHashSetTranslator<ValueType, inlineCapacity, HashFunctions> Translator;
557 typedef ListHashSetTranslator<ValueType, inlineCapacity, HashFunctions> Translator;
564 typedef ListHashSetTranslator<ValueType, inlineCapacity, HashFunctions> Translator;
574 typedef ListHashSetTranslator<ValueType, inlineCapacity, HashFunctions> Translator;