Lines Matching refs:nCnt
380 MSHORT nCnt = nIndex; in Fresh() local
381 if( nCnt < Count() && ( nWrPos = Pos( nIndex ) ) < nPos ) in Fresh()
387 while( nCnt < Count() && ( nWrPos = Pos( nCnt ) ) < nPos ) in Fresh()
388 nWrEnd = nWrPos + Len( nCnt++ ); in Fresh()
390 if( nCnt < Count() && nWrPos == nPos && Len( nCnt ) == nLen ) in Fresh()
392 ++nCnt; in Fresh()
407 if( nCnt < Count() && ( nWrPos = Pos( nCnt ) ) < nPos ) in Fresh()
413 while( nCnt < Count() && ( nWrPos = Pos( nCnt ) ) < nPos ) in Fresh()
414 nWrEnd = nWrPos + Len( nCnt++ ); in Fresh()
419 Remove( nIndex, nCnt - nIndex ); in Fresh()
496 sal_uInt16 nCnt = Count(); in JoinList() local
498 Insert(nCnt, pNext->maList.begin(), pNext->maList.end()); in JoinList()
501 if( nCnt && Count() > nCnt ) in JoinList()
503 xub_StrLen nWrPos = Pos( nCnt ); in JoinList()
504 xub_StrLen nWrLen = Len( nCnt ); in JoinList()
509 maList[nCnt].mnPos = nWrPos; in JoinList()
510 maList[nCnt].mnLen = nWrLen; in JoinList()
512 if( nWrPos == Pos( nCnt - 1 ) + Len( nCnt - 1 ) ) in JoinList()
514 nWrLen = nWrLen + Len( nCnt - 1 ); in JoinList()
515 maList[nCnt - 1].mnLen = nWrLen; in JoinList()
516 Remove( nCnt, 1 ); in JoinList()