Lines Matching refs:PoolArrayIterator

42 class PoolArrayIterator;
55 typedef PoolArrayIterator<T, Alignment> Iterator;
124 PoolArrayConstIterator (const PoolArrayIterator<T, Alignment>& iterator);
149 PoolArrayConstIterator<T, Alignment>& operator= (const PoolArrayIterator<T, Alignment>& iter);
156 class PoolArrayIterator : public PoolArrayIteratorBase<T, Alignment> class
159 PoolArrayIterator (void);
160 PoolArrayIterator (PoolArray<T, Alignment>* array, deIntptr ndx);
161 ~PoolArrayIterator (void);
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 --()
177PoolArrayIterator<T, Alignment> operator++ (int) { PoolArrayIterator<T, Alignment> copy(*this); t… in operator ++()
178PoolArrayIterator<T, Alignment> operator-- (int) { PoolArrayIterator<T, Alignment> copy(*this); t… 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 -=()
433 inline PoolArrayConstIterator<T, Alignment>::PoolArrayConstIterator (const PoolArrayIterator<T, Ali… in PoolArrayConstIterator()
473 inline PoolArrayIterator<T, Alignment>::PoolArrayIterator (void) in PoolArrayIterator() function in de::PoolArrayIterator
480 inline PoolArrayIterator<T, Alignment>::PoolArrayIterator (PoolArray<T, Alignment>* array, deIntptr… in PoolArrayIterator() function in de::PoolArrayIterator
487 inline PoolArrayIterator<T, Alignment>::~PoolArrayIterator (void) in ~PoolArrayIterator()
494 inline PoolArrayIterator<T, Alignment> operator+ (const PoolArrayIterator<T, Alignment>& iter, deIn… in operator +()
496 return PoolArrayIterator<T, Alignment>(iter.getArray(), iter.getNdx()+offs); in operator +()
500 inline PoolArrayIterator<T, Alignment> operator+ (deUintptr offs, const PoolArrayIterator<T, Alignm… in operator +()
502 return PoolArrayIterator<T, Alignment>(iter.getArray(), iter.getNdx()+offs); in operator +()
506 PoolArrayIterator<T, Alignment> operator- (const PoolArrayIterator<T, Alignment>& iter, deIntptr of… in operator -()
508 return PoolArrayIterator<T, Alignment>(iter.getArray(), iter.getNdx()-offs); in operator -()
512 deIntptr operator- (const PoolArrayIterator<T, Alignment>& iter, const PoolArrayIterator<T, Alignme… in operator -()
534 struct iterator_traits<de::PoolArrayIterator<T, Alignment> >