Lines Matching refs:nCurIndex

532 	nCurIndex  = pCont2->nCurIndex;  in ImpCopyContainer()
640 nCurIndex = 0; in Container()
658 nCurIndex = 0; in Container()
788 if ( pBlock->nCount <= nCurIndex ) in ImpInsert()
790 if ( nIndex <= nCurIndex ) in ImpInsert()
791 nCurIndex++; in ImpInsert()
793 nCurIndex = nCurIndex - pBlock->nCount; // MSVC warns here if += is used in ImpInsert()
806 if ( nIndex <= nCurIndex ) in ImpInsert()
807 nCurIndex++; in ImpInsert()
808 if ( pNewBlock->nCount <= nCurIndex ) in ImpInsert()
809 nCurIndex = nCurIndex - pNewBlock->nCount; // MSVC warns here if += is used in ImpInsert()
821 if ( (pBlock == pCurBlock) && (nIndex <= nCurIndex) ) in ImpInsert()
822 nCurIndex++; in ImpInsert()
842 ImpInsert( p, pCurBlock, nCurIndex ); in Insert()
917 nCurIndex = 0; in ImpRemove()
941 nCurIndex = 0; in ImpRemove()
946 nCurIndex = pCurBlock->Count()-1; in ImpRemove()
960 ((nIndex < nCurIndex) || ((nCurIndex == pBlock->Count()) && nCurIndex)) ) in ImpRemove()
961 nCurIndex--; in ImpRemove()
988 return ImpRemove( pCurBlock, nCurIndex ); in Remove()
1037 return pCurBlock->Replace( p, nCurIndex ); in Replace()
1136 nCurIndex = pCurBlock->Count()-1; in SetSize()
1243 nCurIndex = 0; in Clear()
1264 return pCurBlock->GetObject( nCurIndex ); in GetCurObject()
1295 return nTemp+nCurIndex; in GetCurPos()
1529 nCurIndex = (sal_uInt16)nIndex; in Seek()
1530 return pCurBlock->GetObject( nCurIndex ); in Seek()
1555 nCurIndex = 0; in First()
1556 return pCurBlock->GetObject( nCurIndex ); in First()
1581 nCurIndex = pCurBlock->Count()-1; in Last()
1582 return pCurBlock->GetObject( nCurIndex ); in Last()
1606 else if ( (nCurIndex+1) < pCurBlock->Count() ) in Next()
1607 return pCurBlock->GetObject( ++nCurIndex ); in Next()
1611 nCurIndex = 0; in Next()
1612 return pCurBlock->GetObject( nCurIndex ); in Next()
1638 else if ( nCurIndex ) in Prev()
1639 return pCurBlock->GetObject( --nCurIndex ); in Prev()
1643 nCurIndex = pCurBlock->Count() - 1; in Prev()
1644 return pCurBlock->GetObject( nCurIndex ); in Prev()