Lines Matching refs:aCacheIter
410 ORowSetCacheMap::iterator aCacheIter = m_aCacheIterators.begin(); in setFetchSize() local
412 for(;aCacheIter != aCacheEnd;++aCacheIter) in setFetchSize()
414 aCacheIterToChange[aCacheIter->first] = sal_False; in setFetchSize()
415 if ( !aCacheIter->second.pRowSet->isInsertRow() in setFetchSize()
418 ptrdiff_t nDist = (aCacheIter->second.aIterator - m_pMatrix->begin()); in setFetchSize()
420 aCacheIterToChange[aCacheIter->first] = sal_True; in setFetchSize()
435 for( aCacheIter = m_aCacheIterators.begin(); in setFetchSize()
437 ++aPosChangeIter,++aCacheIter) in setFetchSize()
443 aCacheIter->second.aIterator = m_pMatrix->begin() + *aIter++; in setFetchSize()
445 aCacheIter->second.aIterator = m_pMatrix->end(); in setFetchSize()
882 ORowSetCacheMap::iterator aCacheIter = m_aCacheIterators.begin(); in moveWindow() local
884 for(;aCacheIter != aCacheEnd;++aCacheIter) in moveWindow()
886 if ( !aCacheIter->second.pRowSet->isInsertRow() in moveWindow()
887 && aCacheIter->second.aIterator != m_pMatrix->end() && !m_bModified ) in moveWindow()
889 ptrdiff_t nDist = (aCacheIter->second.aIterator - m_pMatrix->begin()); in moveWindow()
892 aCacheIter->second.aIterator = m_pMatrix->end(); in moveWindow()
898 aOldPos = aCacheIter->second.aIterator; in moveWindow()
901 aCacheIter->second.aIterator += nOffSet; in moveWindow()
904 aCurrentPos = aCacheIter->second.aIterator; in moveWindow()
906 OSL_ENSURE(aCacheIter->second.aIterator >= m_pMatrix->begin() in moveWindow()
907 … && aCacheIter->second.aIterator < m_pMatrix->end(),"Iterator out of area!"); in moveWindow()
1314 ORowSetCacheMap::iterator aCacheIter = m_aCacheIterators.begin(); in cancelRowModification() local
1316 for(;aCacheIter != aCacheEnd;++aCacheIter) in cancelRowModification()
1318 … if ( aCacheIter->second.pRowSet->isInsertRow() && aCacheIter->second.aIterator == m_aInsertRow ) in cancelRowModification()
1319 aCacheIter->second.aIterator = m_pMatrix->end(); in cancelRowModification()
1432 ORowSetCacheMap::iterator aCacheIter = m_aCacheIterators.begin(); in deleteIterator() local
1433 for(;aCacheIter != m_aCacheIterators.end();) in deleteIterator()
1435 if ( aCacheIter->second.pRowSet == _pRowSet ) in deleteIterator()
1437 m_aCacheIterators.erase(aCacheIter); in deleteIterator()
1438 aCacheIter = m_aCacheIterators.begin(); in deleteIterator()
1441 ++aCacheIter; in deleteIterator()
1450 ORowSetCacheMap::iterator aCacheIter = m_aCacheIterators.begin(); in rotateCacheIterator() local
1452 for(;aCacheIter != aCacheEnd;++aCacheIter) in rotateCacheIterator()
1454 if ( !aCacheIter->second.pRowSet->isInsertRow() in rotateCacheIterator()
1455 && aCacheIter->second.aIterator != m_pMatrix->end() && !m_bModified ) in rotateCacheIterator()
1457 ptrdiff_t nDist = (aCacheIter->second.aIterator - m_pMatrix->begin()); in rotateCacheIterator()
1460 aCacheIter->second.aIterator = m_pMatrix->end(); in rotateCacheIterator()
1464 … OSL_ENSURE((aCacheIter->second.aIterator - m_pMatrix->begin()) >= _nDist,"Invalid Dist value!"); in rotateCacheIterator()
1465 aCacheIter->second.aIterator -= _nDist; in rotateCacheIterator()
1466 OSL_ENSURE(aCacheIter->second.aIterator >= m_pMatrix->begin() in rotateCacheIterator()
1467 … && aCacheIter->second.aIterator < m_pMatrix->end(),"Iterator out of area!"); in rotateCacheIterator()