Home | History | Annotate | Download | only in wtf

Lines Matching refs:ValuePeekInType

175     typedef typename HashTraits<Value>::PeekInType ValuePeekInType;
210 iterator find(ValuePeekInType);
211 const_iterator find(ValuePeekInType) const;
212 bool contains(ValuePeekInType) const;
223 AddResult add(ValuePeekInType);
229 iterator addReturnIterator(ValuePeekInType);
233 AddResult appendOrMoveToLast(ValuePeekInType);
237 AddResult prependOrMoveToFirst(ValuePeekInType);
239 AddResult insertBefore(ValuePeekInType beforeValue, ValuePeekInType newValue);
240 AddResult insertBefore(iterator it, ValuePeekInType newValue) { return m_impl.template add<NodeHashFunctions>(newValue, it.node()); }
242 void remove(ValuePeekInType);
277 typedef typename HashTraits<Value>::PeekInType ValuePeekInType;
279 static unsigned hash(const ValuePeekInType& key) { return HashFunctions::hash(key); }
280 static bool equal(const Node& a, const ValuePeekInType& b) { return HashFunctions::equal(a.m_value, b); }
282 static void translate(Node& location, ValuePeekInType key, NodeBase* anchor)
563 inline typename LinkedHashSet<T, U, V, W>::iterator LinkedHashSet<T, U, V, W>::find(ValuePeekInType value)
565 LinkedHashSet::Node* node = m_impl.template lookup<LinkedHashSet::NodeHashFunctions, ValuePeekInType>(value);
572 inline typename LinkedHashSet<T, U, V, W>::const_iterator LinkedHashSet<T, U, V, W>::find(ValuePeekInType value) const
574 const LinkedHashSet::Node* node = m_impl.template lookup<LinkedHashSet::NodeHashFunctions, ValuePeekInType>(value);
616 inline bool LinkedHashSet<T, U, V, W>::contains(ValuePeekInType value) const
622 typename LinkedHashSet<Value, HashFunctions, Traits, Allocator>::AddResult LinkedHashSet<Value, HashFunctions, Traits, Allocator>::add(ValuePeekInType value)
628 typename LinkedHashSet<T, U, V, W>::iterator LinkedHashSet<T, U, V, W>::addReturnIterator(ValuePeekInType value)
635 typename LinkedHashSet<T, U, V, W>::AddResult LinkedHashSet<T, U, V, W>::appendOrMoveToLast(ValuePeekInType value)
647 typename LinkedHashSet<T, U, V, W>::AddResult LinkedHashSet<T, U, V, W>::prependOrMoveToFirst(ValuePeekInType value)
659 typename LinkedHashSet<T, U, V, W>::AddResult LinkedHashSet<T, U, V, W>::insertBefore(ValuePeekInType beforeValue, ValuePeekInType newValue)
673 inline void LinkedHashSet<T, U, V, W>::remove(ValuePeekInType value)