Lines Matching refs:nColumns
290 void CellCursor::split_column( sal_Int32 nCol, sal_Int32 nColumns, std::vector< sal_Int32 >& rLeftO… in split_column() argument
301 nNewCols = std::max( nNewCols, nColumns - xCell->getColumnSpan() + 1 - rLeftOvers[nRow] ); in split_column()
351 …DBG_ASSERT( nCellsAvailable > nColumns, "sdr::table::CellCursor::split_column(), somethings wrong"… in split_column()
353 sal_Int32 nSplitSpan = (nCellsAvailable / (nColumns + 1)) - 1; in split_column()
356 sal_Int32 nSplits = nColumns + 1; in split_column()
361 nSplitSpan = nCellsAvailable - ((nSplitSpan+1) * nColumns) - 1; in split_column()
394 void CellCursor::split_horizontal( sal_Int32 nColumns ) in split_horizontal() argument
401 split_column( nCol, nColumns, aLeftOvers ); in split_horizontal()
522 void SAL_CALL CellCursor::split( sal_Int32 nColumns, sal_Int32 nRows ) throw (NoSupportException, I… in split() argument
524 if( (nColumns < 0) || (nRows < 0) ) in split()
537 if( nColumns > 0 ) in split()
538 split_horizontal( nColumns ); in split()
543 if( nColumns > 0 ||nRows > 0 ) in split()