Lines Matching refs:rEndCol

401 sal_Bool ScTable::GetCellArea( SCCOL& rEndCol, SCROW& rEndRow ) const  in GetCellArea()  argument
416 rEndCol = nMaxX; in GetCellArea()
421 sal_Bool ScTable::GetTableArea( SCCOL& rEndCol, SCROW& rEndRow ) const in GetTableArea() argument
430 rEndCol = nTableAreaX; in GetTableArea()
435 void ScTable::GetLastAttrCell( SCCOL& rEndCol, SCROW& rEndRow ) const in GetLastAttrCell() argument
450 rEndCol = nMaxX; in GetLastAttrCell()
475 sal_Bool ScTable::GetPrintArea( SCCOL& rEndCol, SCROW& rEndRow, sal_Bool bNotes ) const in GetPrintArea() argument
541 rEndCol = nMaxX; in GetPrintArea()
547 SCCOL& rEndCol, sal_Bool /* bNotes */ ) const in GetPrintAreaHor() argument
579 rEndCol = nMaxX; in GetPrintAreaHor()
661 void ScTable::GetDataArea( SCCOL& rStartCol, SCROW& rStartRow, SCCOL& rEndCol, SCROW& rEndRow, in GetDataArea() argument
684 if (rEndCol < MAXCOL) in GetDataArea()
685 if (!aCol[rEndCol+1].IsEmptyBlock(nStart,nEnd)) in GetDataArea()
687 ++rEndCol; in GetDataArea()
704 for (i=rStartCol; i<=rEndCol && !bFound; i++) in GetDataArea()
720 for (i=rStartCol; i<=rEndCol && !bFound; i++) in GetDataArea()
735 if ( !bLeft && rStartCol < MAXCOL && rStartCol < rEndCol ) in GetDataArea()
738 if ( !bRight && rEndCol > 0 && rStartCol < rEndCol ) in GetDataArea()
739 if ( aCol[rEndCol].IsEmptyBlock(rStartRow,rEndRow) ) in GetDataArea()
740 --rEndCol; in GetDataArea()
744 for (i=rStartCol; i<=rEndCol && !bFound; i++) in GetDataArea()
753 for (i=rStartCol; i<=rEndCol && !bFound; i++) in GetDataArea()
764 SCCOL& rEndCol, SCROW& rEndRow, bool bColumnsOnly ) const in ShrinkToUsedDataArea() argument
768 PutInOrder( rStartCol, rEndCol); in ShrinkToUsedDataArea()
774 if (rEndCol > MAXCOL) in ShrinkToUsedDataArea()
775 rEndCol = MAXCOL, o_bShrunk = true; in ShrinkToUsedDataArea()
784 while (rStartCol < rEndCol) in ShrinkToUsedDataArea()
786 if (aCol[rEndCol].IsEmptyBlock( rStartRow, rEndRow)) in ShrinkToUsedDataArea()
788 --rEndCol; in ShrinkToUsedDataArea()
795 while (rStartCol < rEndCol) in ShrinkToUsedDataArea()
811 for (SCCOL i=rStartCol; i<=rEndCol && !bFound; i++) in ShrinkToUsedDataArea()
824 for (SCCOL i=rStartCol; i<=rEndCol && !bFound; i++) in ShrinkToUsedDataArea()
839 return rStartCol != rEndCol || (bColumnsOnly ? in ShrinkToUsedDataArea()
887 void ScTable::LimitChartArea( SCCOL& rStartCol, SCROW& rStartRow, SCCOL& rEndCol, SCROW& rEndRow ) in LimitChartArea() argument
889 while ( rStartCol<rEndCol && aCol[rStartCol].IsEmptyBlock(rStartRow,rEndRow) ) in LimitChartArea()
892 while ( rStartCol<rEndCol && aCol[rEndCol].IsEmptyBlock(rStartRow,rEndRow) ) in LimitChartArea()
893 --rEndCol; in LimitChartArea()
895 while ( rStartRow<rEndRow && IsEmptyLine(rStartRow, rStartCol, rEndCol) ) in LimitChartArea()
898 while ( rStartRow<rEndRow && IsEmptyLine(rEndRow, rStartCol, rEndCol) ) in LimitChartArea()
1401 SCCOL /* nStartCol */, SCROW nStartRow, SCCOL& rEndCol, SCROW nEndRow ) in ExtendPrintArea() argument
1440 for (SCCOL nCol = rEndCol; nCol >= 0; --nCol) in ExtendPrintArea()
1477 if (nPrintCol > rEndCol) in ExtendPrintArea()
1479 rEndCol = nPrintCol; in ExtendPrintArea()