Lines Matching refs:nRows
151 sal_Int32 nRows = nRowCount; in TableModel() local
152 while( nRows-- ) in TableModel()
153 (*maRows[nRows]) = (*xSourceTable->maRows[nRows]); in TableModel()
180 void TableModel::init( sal_Int32 nColumns, sal_Int32 nRows ) in init() argument
182 if( nRows < 20 ) in init()
188 if( nRows && nColumns ) in init()
191 maRows.resize( nRows ); in init()
193 while( nRows-- ) in init()
194 maRows[nRows].set( new TableRow( this, nRows, nColumns ) ); in init()
275 sal_Int32 nRows = getRowCountImpl(); in UndoInsertColumns() local
276 while( nRows-- ) in UndoInsertColumns()
277 maRows[nRows]->removeColumns( nIndex, nCount ); in UndoInsertColumns()
300 sal_Int32 nRows = getRowCountImpl(); in UndoRemoveColumns() local
301 for( sal_Int32 nRow = 0; nRow < nRows; ++nRow ) in UndoRemoveColumns()
740 sal_Int32 nRows = getRowCountImpl(); in insertColumns() local
741 while( nRows-- ) in insertColumns()
742 maRows[nRows]->insertColumns( nIndex, nCount ); in insertColumns()
760 nRows = getRowCountImpl(); in insertColumns()
761 CellVector aNewCells( nCount * nRows ); in insertColumns()
764 nRows = getRowCountImpl(); in insertColumns()
765 for( sal_Int32 nRow = 0; nRow < nRows; ++nRow ) in insertColumns()
824 sal_Int32 nRows = getRowCountImpl(); in removeColumns() local
842 CellVector aRemovedCells( nCount * nRows ); in removeColumns()
844 for( sal_Int32 nRow = 0; nRow < nRows; ++nRow ) in removeColumns()
899 while( nRows-- ) in removeColumns()
900 maRows[nRows]->removeColumns( nIndex, nCount ); in removeColumns()