Lines Matching refs:m_pPointer
134 /* ctor */ explicit iterator() : m_pPointer(NULL) {} in iterator()
136 reference operator*() const { NW_NULL_ASSERT(m_pPointer); return *m_pPointer; }
137 pointer operator->() const { return m_pPointer; }
139 TIt &operator++() { m_pPointer = m_pPointer->GetNext(); return *this; }
141 TIt &operator--() { m_pPointer = m_pPointer->GetPrev(); return *this; }
144 friend bool operator==(TIt it1, TIt it2) { return it1.m_pPointer == it2.m_pPointer; }
149 explicit iterator(pointer p) : m_pPointer(p) {} in iterator()
151 pointer m_pPointer; variable
170 explicit const_iterator() : m_pPointer(NULL) {} in const_iterator()
171 const_iterator(Iterator_alias_ it) : m_pPointer(it.m_pPointer) {} in const_iterator()
173 reference operator*() const { NW_NULL_ASSERT(m_pPointer); return *m_pPointer;}
174 pointer operator->() const { return m_pPointer;}
176 TIt &operator++() { m_pPointer = m_pPointer->GetNext(); return *this; }
178 TIt &operator--() { m_pPointer = m_pPointer->GetPrev(); return *this; }
181 friend bool operator==(TIt it1, TIt it2) {return it1.m_pPointer == it2.m_pPointer; }
186 explicit const_iterator(pointer p) : m_pPointer(p) {} in const_iterator()
188 pointer m_pPointer; variable