Searched refs:m_BaseNode (Results 1 – 2 of 2) sorted by relevance
30 NW_ASSERT(it.m_pPointer != &m_BaseNode); in erase()60 Node* p = m_BaseNode.m_pNext; in reverse()65 for ( ; p != &m_BaseNode ; p = pNext ) in reverse()104 NW_ASSERT(p != &m_BaseNode); in erase()
212 iterator begin() { return iterator(m_BaseNode.GetNext()); } in begin()213 const_iterator begin() const { return const_iterator(m_BaseNode.GetNext()); } in begin()214 iterator end() { return iterator(&m_BaseNode); } in end()215 const_iterator end() const { return const_iterator(const_cast<Node*>(&m_BaseNode)); } in end()290 Node* GetBaseNode() { return &m_BaseNode; } in GetBaseNode()291 const Node* GetBaseNode() const { return &m_BaseNode; } in GetBaseNode()298 m_BaseNode.m_pNext = &m_BaseNode; in Initialize_()299 m_BaseNode.m_pPrev = &m_BaseNode; in Initialize_()304 Node m_BaseNode; // ノードリンクリストの[先端 - 1]兼[終端]。 variable