Lines Matching defs:iter
158 PoolArrayConstIterator<T, Alignment>& operator= (const PoolArrayIterator<T, Alignment>& iter);
442 inline PoolArrayConstIterator<T, Alignment>::PoolArrayConstIterator (const PoolArrayIterator<T, Alignment>& iter)
443 : PoolArrayIteratorBase<T, Alignment> (iter)
444 , m_array (iter.getArray())
456 inline PoolArrayConstIterator<T, Alignment> operator+ (const PoolArrayConstIterator<T, Alignment>& iter, deIntptr offs)
458 return PoolArrayConstIterator<T, Alignment>(iter->getArray(), iter->getNdx()+offs);
462 inline PoolArrayConstIterator<T, Alignment> operator+ (deUintptr offs, const PoolArrayConstIterator<T, Alignment>& iter)
464 return PoolArrayConstIterator<T, Alignment>(iter->getArray(), iter->getNdx()+offs);
468 PoolArrayConstIterator<T, Alignment> operator- (const PoolArrayConstIterator<T, Alignment>& iter, deIntptr offs)
470 return PoolArrayConstIterator<T, Alignment>(iter.getArray(), iter.getNdx()-offs);
474 deIntptr operator- (const PoolArrayConstIterator<T, Alignment>& iter, const PoolArrayConstIterator<T, Alignment>& other)
476 return iter.getNdx()-other.getNdx();
503 inline PoolArrayIterator<T, Alignment> operator+ (const PoolArrayIterator<T, Alignment>& iter, deIntptr offs)
505 return PoolArrayIterator<T, Alignment>(iter.getArray(), iter.getNdx()+offs);
509 inline PoolArrayIterator<T, Alignment> operator+ (deUintptr offs, const PoolArrayIterator<T, Alignment>& iter)
511 return PoolArrayIterator<T, Alignment>(iter.getArray(), iter.getNdx()+offs);
515 PoolArrayIterator<T, Alignment> operator- (const PoolArrayIterator<T, Alignment>& iter, deIntptr offs)
517 return PoolArrayIterator<T, Alignment>(iter.getArray(), iter.getNdx()-offs);
521 deIntptr operator- (const PoolArrayIterator<T, Alignment>& iter, const PoolArrayIterator<T, Alignment>& other)
523 return iter.getNdx()-other.getNdx();