• Home
  • Raw
  • Download

Lines Matching refs:m_ndx

118 						PoolArrayIteratorBase		(deUintptr ndx) : m_ndx(ndx) {}  in PoolArrayIteratorBase()
121 deIntptr getNdx (void) const throw() { return m_ndx; } in getNdx()
124 deIntptr m_ndx; member in de::PoolArrayIteratorBase
141 const T* operator-> (void) const throw() { return &(*m_array)[this->m_ndx]; } in operator ->()
142 const T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; } in operator *()
143 const T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; } in operator []()
146 PoolArrayConstIterator<T, Alignment>& operator++ (void) { this->m_ndx += 1; return *this; } in operator ++()
147 PoolArrayConstIterator<T, Alignment>& operator-- (void) { this->m_ndx -= 1; return *this; } in operator --()
150 …perator++ (int) { PoolArrayConstIterator<T, Alignment> copy(*this); this->m_ndx +=1; return copy; } in operator ++()
151 …perator-- (int) { PoolArrayConstIterator<T, Alignment> copy(*this); this->m_ndx -=1; return copy; } in operator --()
154 …PoolArrayConstIterator<T, Alignment>& operator+= (deIntptr offs) { this->m_ndx += offs; return *th… in operator +=()
155 …PoolArrayConstIterator<T, Alignment>& operator-= (deIntptr offs) { this->m_ndx -= offs; return *th… in operator -=()
177 T* operator-> (void) const throw() { return &(*m_array)[this->m_ndx]; } in operator ->()
178 T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; } in operator *()
179 T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; } in operator []()
182 PoolArrayIterator<T, Alignment>& operator++ (void) { this->m_ndx += 1; return *this; } in operator ++()
183 PoolArrayIterator<T, Alignment>& operator-- (void) { this->m_ndx -= 1; return *this; } in operator --()
186 …t> operator++ (int) { PoolArrayIterator<T, Alignment> copy(*this); this->m_ndx +=1; return copy; } in operator ++()
187 …t> operator-- (int) { PoolArrayIterator<T, Alignment> copy(*this); this->m_ndx -=1; return copy; } in operator --()
190 PoolArrayIterator<T, Alignment>& operator+= (deIntptr offs) { this->m_ndx += offs; return *this; } in operator +=()
191 PoolArrayIterator<T, Alignment>& operator-= (deIntptr offs) { this->m_ndx -= offs; return *this; } in operator -=()