Home | History | Annotate | Download | only in wtf

Lines Matching defs:m_tail

135         Node* m_tail;
335 m_position = m_set->m_tail;
378 , m_tail(0)
386 , m_tail(0)
407 std::swap(m_tail, other.m_tail);
477 return m_tail->m_value;
484 return m_tail->m_value;
491 m_impl.remove(m_tail);
492 unlinkAndDelete(m_tail);
609 m_tail = 0;
624 ASSERT(node == m_tail);
625 m_tail = node->m_prev;
627 ASSERT(node != m_tail);
637 node->m_prev = m_tail;
640 if (m_tail) {
642 m_tail->m_next = node;
648 m_tail = node;