Home | History | Annotate | Download | only in wtf

Lines Matching defs:m_tail

44     Node* m_tail;
49 , m_tail(0)
65 if (!m_tail) {
68 m_tail = node;
75 m_tail->setNext(node);
76 node->setPrev(m_tail);
78 m_tail = node;
92 ASSERT(node != m_tail);
95 ASSERT(node == m_tail);
96 m_tail = node->prev();