Home | History | Annotate | Download | only in wtf

Lines Matching defs:m_position

289             , m_position(position)
300 return &m_position->m_value;
307 ASSERT(m_position != 0);
308 m_position = m_position->m_next;
316 ASSERT(m_position != m_set->m_head);
317 if (!m_position)
318 m_position = m_set->m_tail;
320 m_position = m_position->m_prev;
329 return m_position == other.m_position;
333 return m_position != other.m_position;
337 Node* node() { return m_position; }
340 Node* m_position;