Lines Matching defs:m_tail
117 List() noexcept : m_head {&m_tail, &m_tail}, m_tail {&m_head, &m_head}
128 NodeType* y = rhs.m_tail.prev;
129 y->next = &m_tail;
130 m_tail.prev = y;
146 NodeType* y = rhs.m_tail.prev;
147 y->next = &m_tail;
148 m_tail.prev = y;
182 m_tail.prev->next = &nd;
183 nd.prev = m_tail.prev;
184 nd.next = &m_tail;
185 m_tail.prev = &nd;
210 auto node = static_cast<T*>(m_tail.prev);
234 m_tail.prev = &m_head;
235 m_tail.next = &m_head;
236 m_head.prev = &m_tail;
237 m_head.next = &m_tail;
243 NodeType m_tail;