Lines Matching refs:m_ndx
109 PoolArrayIteratorBase (deUintptr ndx) : m_ndx(ndx) {} in PoolArrayIteratorBase()
112 deIntptr getNdx (void) const throw() { return m_ndx; } in getNdx()
115 deIntptr m_ndx; member in de::PoolArrayIteratorBase
132 const T* operator-> (void) const throw() { return (*m_array)[this->m_ndx]; } in operator ->()
133 const T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; } in operator *()
134 const T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; } in operator []()
137 PoolArrayConstIterator<T, Alignment>& operator++ (void) { this->m_ndx += 1; return *this; } in operator ++()
138 PoolArrayConstIterator<T, Alignment>& operator-- (void) { this->m_ndx -= 1; return *this; } in operator --()
141 …perator++ (int) { PoolArrayConstIterator<T, Alignment> copy(*this); this->m_ndx +=1; return copy; } in operator ++()
142 …perator-- (int) { PoolArrayConstIterator<T, Alignment> copy(*this); this->m_ndx -=1; return copy; } in operator --()
145 …PoolArrayConstIterator<T, Alignment>& operator+= (deIntptr offs) { this->m_ndx += offs; return *th… in operator +=()
146 …PoolArrayConstIterator<T, Alignment>& operator-= (deIntptr offs) { this->m_ndx -= offs; return *th… in operator -=()
168 T* operator-> (void) const throw() { return (*m_array)[this->m_ndx]; } in operator ->()
169 T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; } in operator *()
170 T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; } in operator []()
173 PoolArrayIterator<T, Alignment>& operator++ (void) { this->m_ndx += 1; return *this; } in operator ++()
174 PoolArrayIterator<T, Alignment>& operator-- (void) { this->m_ndx -= 1; return *this; } in operator --()
177 …t> operator++ (int) { PoolArrayIterator<T, Alignment> copy(*this); this->m_ndx +=1; return copy; } in operator ++()
178 …t> operator-- (int) { PoolArrayIterator<T, Alignment> copy(*this); this->m_ndx -=1; return copy; } in operator --()
181 PoolArrayIterator<T, Alignment>& operator+= (deIntptr offs) { this->m_ndx += offs; return *this; } in operator +=()
182 PoolArrayIterator<T, Alignment>& operator-= (deIntptr offs) { this->m_ndx -= offs; return *this; } in operator -=()