Lines Matching refs:m_anchor
1956 Node m_anchor; // Anchor node for the linked list. member in List
1961 return m_anchor.next; in Front()
1966 return m_anchor.prev; in Back()
2016 assert(pNode != &m_anchor); // We should never try to remove the anchor node. in RemoveItem()
2017 if (pNode == &m_anchor) in RemoveItem()
2048 m_anchor.next = &m_anchor; in List()
2049 m_anchor.prev = &m_anchor; in List()
2062 return InsertAfter(item, m_anchor.prev); in InsertBack()
2068 return InsertAfter(item, &m_anchor); in InsertFront()
2149 Node *n = m_anchor.next; in Clear()
2152 while (n != &m_anchor) in Clear()
2162 m_anchor.next = &m_anchor; in Clear()
2163 m_anchor.prev = &m_anchor; in Clear()
2209 if (pos.pNode && (pos.pNode->next != &m_anchor)) in Next()