• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:PoolArrayConstIterator

39 class PoolArrayConstIterator;
56 typedef PoolArrayConstIterator<T, Alignment> ConstIterator;
128 class PoolArrayConstIterator : public PoolArrayIteratorBase<T, Alignment> class
131 PoolArrayConstIterator (void);
132 PoolArrayConstIterator (const PoolArray<T, Alignment>* array, deIntptr ndx);
133 PoolArrayConstIterator (const PoolArrayIterator<T, Alignment>& iterator);
134 ~PoolArrayConstIterator (void);
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 --()
150PoolArrayConstIterator<T, Alignment> operator++ (int) { PoolArrayConstIterator<T, Alignment> copy(… in operator ++()
151PoolArrayConstIterator<T, Alignment> operator-- (int) { PoolArrayConstIterator<T, Alignment> copy(… in operator --()
154PoolArrayConstIterator<T, Alignment>& operator+= (deIntptr offs) { this->m_ndx += offs; return *th… in operator +=()
155PoolArrayConstIterator<T, Alignment>& operator-= (deIntptr offs) { this->m_ndx -= offs; return *th… in operator -=()
158 PoolArrayConstIterator<T, Alignment>& operator= (const PoolArrayIterator<T, Alignment>& iter);
428 inline PoolArrayConstIterator<T, Alignment>::PoolArrayConstIterator (void) in PoolArrayConstIterator() function in de::PoolArrayConstIterator
435 inline PoolArrayConstIterator<T, Alignment>::PoolArrayConstIterator (const PoolArray<T, Alignment>*… in PoolArrayConstIterator() function in de::PoolArrayConstIterator
442 inline PoolArrayConstIterator<T, Alignment>::PoolArrayConstIterator (const PoolArrayIterator<T, Ali… in PoolArrayConstIterator() function in de::PoolArrayConstIterator
449 inline PoolArrayConstIterator<T, Alignment>::~PoolArrayConstIterator (void) in ~PoolArrayConstIterator()
456 inline PoolArrayConstIterator<T, Alignment> operator+ (const PoolArrayConstIterator<T, Alignment>& … in operator +()
458 return PoolArrayConstIterator<T, Alignment>(iter->getArray(), iter->getNdx()+offs); in operator +()
462 inline PoolArrayConstIterator<T, Alignment> operator+ (deUintptr offs, const PoolArrayConstIterator in operator +()
464 return PoolArrayConstIterator<T, Alignment>(iter->getArray(), iter->getNdx()+offs); in operator +()
468 PoolArrayConstIterator<T, Alignment> operator- (const PoolArrayConstIterator<T, Alignment>& iter, d… in operator -()
470 return PoolArrayConstIterator<T, Alignment>(iter.getArray(), iter.getNdx()-offs); in operator -()
474 deIntptr operator- (const PoolArrayConstIterator<T, Alignment>& iter, const PoolArrayConstIterator<… in operator -()
533 struct iterator_traits<de::PoolArrayConstIterator<T, Alignment> >