Home | History | Annotate | Download | only in wtf

Lines Matching refs:AddResult

164     struct AddResult {
165 AddResult(const typename ImplType::AddResult& hashTableAddResult)
223 AddResult add(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()); }
614 typename LinkedHashSet<Value, HashFunctions, Traits, Allocator>::AddResult LinkedHashSet<Value, HashFunctions, Traits, Allocator>::add(ValuePeekInType value)
622 typename ImplType::AddResult result = m_impl.template add<NodeHashFunctions>(value, &m_anchor);
627 typename LinkedHashSet<T, U, V, W>::AddResult LinkedHashSet<T, U, V, W>::appendOrMoveToLast(ValuePeekInType value)
629 typename ImplType::AddResult result = m_impl.template add<NodeHashFunctions>(value, &m_anchor);
639 typename LinkedHashSet<T, U, V, W>::AddResult LinkedHashSet<T, U, V, W>::prependOrMoveToFirst(ValuePeekInType value)
641 typename ImplType::AddResult result = m_impl.template add<NodeHashFunctions>(value, m_anchor.m_next);
651 typename LinkedHashSet<T, U, V, W>::AddResult LinkedHashSet<T, U, V, W>::insertBefore(ValuePeekInType beforeValue, ValuePeekInType newValue)