Home | History | Annotate | Download | only in wtf

Lines Matching refs:Translator

498         typedef ListHashSetTranslator<ValueType, inlineCapacity, HashFunctions> Translator;
499 ImplTypeIterator it = m_impl.template find<ValueType, Translator>(value);
508 typedef ListHashSetTranslator<ValueType, inlineCapacity, HashFunctions> Translator;
509 ImplTypeConstIterator it = m_impl.template find<ValueType, Translator>(value);
515 template<typename ValueType, size_t inlineCapacity, typename T, typename Translator>
520 static unsigned hash(const T& key) { return Translator::hash(key); }
521 static bool equal(Node* const& a, const T& b) { return Translator::equal(a->m_value, b); }
557 typedef ListHashSetTranslator<ValueType, inlineCapacity, HashFunctions> Translator;
558 return m_impl.template contains<ValueType, Translator>(value);
564 typedef ListHashSetTranslator<ValueType, inlineCapacity, HashFunctions> Translator;
565 pair<typename ImplType::iterator, bool> result = m_impl.template add<ValueType, NodeAllocator*, Translator>(value, m_allocator.get());
574 typedef ListHashSetTranslator<ValueType, inlineCapacity, HashFunctions> Translator;
575 pair<typename ImplType::iterator, bool> result = m_impl.template add<ValueType, NodeAllocator*, Translator>(newValue, m_allocator.get());