Searched refs:PoolArrayIterator (Results 1 – 1 of 1) sorted by relevance
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> class159 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 --()[all …]