Lines Matching refs:PoolArrayIterator
42 class PoolArrayIterator;
55 typedef PoolArrayIterator<T, Alignment> Iterator;
133 PoolArrayConstIterator (const PoolArrayIterator<T, Alignment>& iterator);
158 PoolArrayConstIterator<T, Alignment>& operator= (const PoolArrayIterator<T, Alignment>& iter);
165 class PoolArrayIterator : public PoolArrayIteratorBase<T, Alignment> class
168 PoolArrayIterator (void);
169 PoolArrayIterator (PoolArray<T, Alignment>* array, deIntptr ndx);
170 ~PoolArrayIterator (void);
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 …PoolArrayIterator<T, Alignment> operator++ (int) { PoolArrayIterator<T, Alignment> copy(*this); t… in operator ++()
187 …PoolArrayIterator<T, Alignment> operator-- (int) { PoolArrayIterator<T, Alignment> copy(*this); t… 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 -=()
442 inline PoolArrayConstIterator<T, Alignment>::PoolArrayConstIterator (const PoolArrayIterator<T, Ali… in PoolArrayConstIterator()
482 inline PoolArrayIterator<T, Alignment>::PoolArrayIterator (void) in PoolArrayIterator() function in de::PoolArrayIterator
489 inline PoolArrayIterator<T, Alignment>::PoolArrayIterator (PoolArray<T, Alignment>* array, deIntptr… in PoolArrayIterator() function in de::PoolArrayIterator
496 inline PoolArrayIterator<T, Alignment>::~PoolArrayIterator (void) in ~PoolArrayIterator()
503 inline PoolArrayIterator<T, Alignment> operator+ (const PoolArrayIterator<T, Alignment>& iter, deIn… in operator +()
505 return PoolArrayIterator<T, Alignment>(iter.getArray(), iter.getNdx()+offs); in operator +()
509 inline PoolArrayIterator<T, Alignment> operator+ (deUintptr offs, const PoolArrayIterator<T, Alignm… in operator +()
511 return PoolArrayIterator<T, Alignment>(iter.getArray(), iter.getNdx()+offs); in operator +()
515 PoolArrayIterator<T, Alignment> operator- (const PoolArrayIterator<T, Alignment>& iter, deIntptr of… in operator -()
517 return PoolArrayIterator<T, Alignment>(iter.getArray(), iter.getNdx()-offs); in operator -()
521 deIntptr operator- (const PoolArrayIterator<T, Alignment>& iter, const PoolArrayIterator<T, Alignme… in operator -()
543 struct iterator_traits<de::PoolArrayIterator<T, Alignment> >