Lines Matching refs:rLast
1782 void SvxTableController::getSelectedCells( CellPos& rFirst, CellPos& rLast ) in getSelectedCells() argument
1791 rLast.mnCol = std::max( maCursorFirstPos.mnCol, maCursorLastPos.mnCol ); in getSelectedCells()
1792 rLast.mnRow = std::max( maCursorFirstPos.mnRow, maCursorLastPos.mnRow ); in getSelectedCells()
1798 for( sal_Int32 nRow = rFirst.mnRow; nRow <= rLast.mnRow && !bExt; nRow++ ) in getSelectedCells()
1800 for( sal_Int32 nCol = rFirst.mnCol; nCol <= rLast.mnCol && !bExt; nCol++ ) in getSelectedCells()
1819 …if( ((nCol + xCell->getColumnSpan() - 1) > rLast.mnCol) || (nRow + xCell->getRowSpan() - 1 ) > rLa… in getSelectedCells()
1821 rLast.mnCol = std::max( rLast.mnCol, nCol + xCell->getColumnSpan() - 1 ); in getSelectedCells()
1822 rLast.mnRow = std::max( rLast.mnRow, nRow + xCell->getRowSpan() - 1 ); in getSelectedCells()
1835 rLast = rFirst; in getSelectedCells()
1839 …Reference< XMergeableCell > xCell( mxTable->getCellByPosition( rLast.mnCol, rLast.mnRow ), UNO_QUE… in getSelectedCells()
1842 rLast.mnCol += xCell->getColumnSpan() - 1; in getSelectedCells()
1843 rLast.mnRow += xCell->getRowSpan() - 1; in getSelectedCells()
1853 rLast.mnRow = mxTable->getRowCount()-1; in getSelectedCells()
1854 rLast.mnCol = mxTable->getColumnCount()-1; in getSelectedCells()
1858 rLast.mnRow = 0; in getSelectedCells()
1859 rLast.mnCol = 0; in getSelectedCells()