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