Home | History | Annotate | Download | only in wtf

Lines Matching defs:AddResult

115         typedef HashTableAddResult<ValueType> AddResult;
159 AddResult add(ValuePassInType);
169 AddResult appendOrMoveToLast(ValuePassInType);
173 AddResult prependOrMoveToFirst(ValuePassInType);
175 AddResult insertBefore(ValuePeekInType beforeValue, ValuePassInType newValue);
176 AddResult insertBefore(iterator, ValuePassInType);
804 typename ListHashSet<T, inlineCapacity, U, V>::AddResult ListHashSet<T, inlineCapacity, U, V>::add(ValuePassInType value)
811 typename ImplType::AddResult result = m_impl.template add<BaseTranslator>(value, *this->allocator());
814 return AddResult(*result.storedValue, result.isNewEntry);
824 typename ListHashSet<T, inlineCapacity, U, V>::AddResult ListHashSet<T, inlineCapacity, U, V>::appendOrMoveToLast(ValuePassInType value)
827 typename ImplType::AddResult result = m_impl.template add<BaseTranslator>(value, *this->allocator());
832 return AddResult(*result.storedValue, result.isNewEntry);
836 typename ListHashSet<T, inlineCapacity, U, V>::AddResult ListHashSet<T, inlineCapacity, U, V>::prependOrMoveToFirst(ValuePassInType value)
839 typename ImplType::AddResult result = m_impl.template add<BaseTranslator>(value, *this->allocator());
844 return AddResult(*result.storedValue, result.isNewEntry);
848 typename ListHashSet<T, inlineCapacity, U, V>::AddResult ListHashSet<T, inlineCapacity, U, V>::insertBefore(iterator it, ValuePassInType newValue)
851 typename ImplType::AddResult result = m_impl.template add<BaseTranslator>(newValue, *this->allocator());
854 return AddResult
858 typename ListHashSet<T, inlineCapacity, U, V>::AddResult ListHashSet<T, inlineCapacity, U, V>::insertBefore(ValuePeekInType beforeValue, ValuePassInType newValue)