Lines Matching refs:nRowCount

129 	nRowCount = 0;  in ConstructImpl()
960 return nRowCount; in GetRowCount()
1161 long nTmpMin = Min( (long)(nTopRow + nRows), (long)(nRowCount - 1) ); in ScrollRows()
1174 nTmpMin = Min( (long)(nTopRow + nRows), (long)(nRowCount - 1) ); in ScrollRows()
1187 pVScroll->SetRange( Range( 0L, nRowCount ) ); in ScrollRows()
1247 long nOldRowCount = nRowCount; in Clear()
1248 nRowCount = 0; in Clear()
1270 if ( nOldRowCount != nRowCount ) in Clear()
1306 else if (nRow > nRowCount) // maximal = nRowCount in RowInserted()
1307 nRow = nRowCount; in RowInserted()
1323 sal_Bool bLastRow = nRow >= nRowCount; in RowInserted()
1324 nRowCount += nNumRows; in RowInserted()
1395 for (sal_Int32 i = nRow+1 ; i <= nRowCount ; ++i) in RowInserted()
1409 DBG_ASSERT(nRowCount > 0,"BrowseBox: nRowCount <= 0"); in RowInserted()
1411 DBG_ASSERT(nCurRow < nRowCount,"nCurRow >= nRowCount"); in RowInserted()
1422 else if ( nRow >= nRowCount ) in RowRemoved()
1423 nRow = nRowCount - 1; in RowRemoved()
1428 if ( nRowCount <= 0 ) in RowRemoved()
1440 nRowCount -= nNumRows; in RowRemoved()
1441 if (nRowCount < 0) nRowCount = 0; in RowRemoved()
1455 …if ( nRowCount == 0 ) // don't compare nRowCount with nNumRows as nNumRows already was subtracted … in RowRemoved()
1465 if (nCurRow == nRowCount) in RowRemoved()
1468 else if( nRow == nCurRow && nCurRow == nRowCount ) in RowRemoved()
1469 nCurRow = nRowCount-1; in RowRemoved()
1480 if (nRow < nRowCount) in RowRemoved()
1523 if ( nRowCount == 0 ) in RowRemoved()
1582 DBG_ASSERT(nRowCount >= 0,"BrowseBox: nRowCount < 0"); in RowRemoved()
1583 DBG_ASSERT(nCurRow >= 0 || nRowCount == 0,"BrowseBox: nCurRow < 0 && nRowCount != 0"); in RowRemoved()
1584 DBG_ASSERT(nCurRow < nRowCount,"nCurRow >= nRowCount"); in RowRemoved()
1613 if ( nRow < 0 || nRow >= nRowCount ) in GoToRow()
1658 if (nCurRow == BROWSER_ENDOFSELECTION && nRowCount > 0) in GoToRow()
1660 else if ( nCurRow >= nRowCount ) in GoToRow()
1661 nCurRow = nRowCount - 1; in GoToRow()
1747 if ( nRow < 0 || nRow >= nRowCount ) in GoToRowColumnId()
2581 if ( nRowCount < GetRowCount() ) in VisibleRowsChanged()
2583 RowInserted(nRowCount,GetRowCount() - nRowCount,sal_False); in VisibleRowsChanged()
2585 else if ( nRowCount > GetRowCount() ) in VisibleRowsChanged()
2587 RowRemoved(nRowCount-(nRowCount - GetRowCount()),nRowCount - GetRowCount(),sal_False); in VisibleRowsChanged()
2648 if (p->nRowCount < 0) return "BrowseBox: nRowCount < 0"; in BrowseBoxCheckInvariants()
2650 …if (p->nTopRow >= p->nRowCount && p->nRowCount != 0) return "BrowseBox: nTopRow >= nRowCount && nR… in BrowseBoxCheckInvariants()
2652 if (p->nCurRow > p->nRowCount) return "BrowseBox: nCurRow > nRowCount"; in BrowseBoxCheckInvariants()