Lines Matching refs:nLastRow

796                         SCROW nLastRow = ::std::min(nThisLastRow, nDestLastRow);  in CopyToTable()  local
797 if (nLastRow >= nRow2) in CopyToTable()
799 nLastRow = nRow2; in CopyToTable()
802 aEntries.push_back(ScShowRowsEntry(i, nLastRow, !bThisHidden)); in CopyToTable()
808 pCharts->SetRangeDirty(ScRange(0, i, nTab, MAXCOL, nLastRow, nTab)); in CopyToTable()
815 i = nLastRow; in CopyToTable()
834 SCROW nLastRow; in CopyToTable() local
835 bool bFiltered = RowFiltered(i, NULL, &nLastRow); in CopyToTable()
836 if (nLastRow >= nRow2) in CopyToTable()
838 nLastRow = nRow2; in CopyToTable()
839 pDestTab->SetRowFiltered(i, nLastRow, bFiltered); in CopyToTable()
840 i = nLastRow; in CopyToTable()
2508 SCROW nLastRow = -1; in GetRowHeight() local
2509 if (!RowHidden(nRow, nLastRow)) in GetRowHeight()
2511 if (nLastRow > nEndRow) in GetRowHeight()
2512 nLastRow = nEndRow; in GetRowHeight()
2513 nHeight += mpRowHeights->getSumValue(nRow, nLastRow); in GetRowHeight()
2515 nRow = nLastRow + 1; in GetRowHeight()
2534 SCROW nLastRow = -1; in GetScaledRowHeight() local
2535 if (!RowHidden(nRow, nLastRow)) in GetScaledRowHeight()
2537 if (nLastRow > nEndRow) in GetScaledRowHeight()
2538 nLastRow = nEndRow; in GetScaledRowHeight()
2541 while (nRow <= nLastRow) in GetScaledRowHeight()
2547 SCROW nSegmentEnd = std::min( nLastRow, aData.mnRow2 ); in GetScaledRowHeight()
2556 nRow = nLastRow + 1; in GetScaledRowHeight()
2584 SCROW nLastRow = -1; in GetHiddenRowCount() local
2585 if (!RowHidden(nRow, nLastRow) || !ValidRow(nLastRow)) in GetHiddenRowCount()
2588 return nLastRow - nRow + 1; in GetHiddenRowCount()