Searched refs:m_BaseNode (Results 1 – 2 of 2) sorted by relevance
28 NW_ASSERT(it.m_pPointer != &m_BaseNode); in erase()58 Node* p = m_BaseNode.m_pNext; in reverse()63 for ( ; p != &m_BaseNode ; p = pNext ) in reverse()102 NW_ASSERT(p != &m_BaseNode); in erase()
210 iterator begin() { return iterator(m_BaseNode.GetNext()); } in begin()211 const_iterator begin() const { return const_iterator(m_BaseNode.GetNext()); } in begin()212 iterator end() { return iterator(&m_BaseNode); } in end()213 const_iterator end() const { return const_iterator(const_cast<Node*>(&m_BaseNode)); } in end()287 Node* GetBaseNode() { return &m_BaseNode; } in GetBaseNode()288 const Node* GetBaseNode() const { return &m_BaseNode; } in GetBaseNode()295 m_BaseNode.m_pNext = &m_BaseNode; in Initialize_()296 m_BaseNode.m_pPrev = &m_BaseNode; in Initialize_()301 Node m_BaseNode; // ノードリンクリストの[先端 - 1]兼[終端]。 variable