Lines Matching refs:nLastRow

97 …lVec& rCells, size_t nWidth, size_t nFirstCol, size_t nFirstRow, size_t nLastCol, size_t nLastRow )  in lclSetMergedRange()  argument
101 for( size_t nRow = nFirstRow; nRow <= nLastRow; ++nRow ) in lclSetMergedRange()
174 size_t nLastRow = nRow + 1; in GetMergedLastRow() local
175 while( (nLastRow < mnHeight) && GetCell( nCol, nLastRow ).mbOverlapY ) ++nLastRow; in GetMergedLastRow()
176 return nLastRow - 1; in GetMergedLastRow()
251 long ArrayImpl::GetRowHeight( size_t nFirstRow, size_t nLastRow ) const in GetRowHeight()
253 return GetRowPosition( nLastRow + 1 ) - GetRowPosition( nFirstRow ); in GetRowHeight()
599 size_t nLastRow = mxImpl->GetMergedLastRow( nCol, nRow ); in GetCellStyleBR() local
600 return ((nCol == nLastCol) && (nRow == nLastRow)) ? in GetCellStyleBR()
611 size_t nLastRow = mxImpl->GetMergedLastRow( nCol, nRow ); in GetCellStyleBL() local
612 return ((nCol == nFirstCol) && (nRow == nLastRow)) ? in GetCellStyleBL()
630 void Array::SetMergedRange( size_t nFirstCol, size_t nFirstRow, size_t nLastCol, size_t nLastRow ) in SetMergedRange() argument
633 DBG_FRAME_CHECK_COLROW( nLastCol, nLastRow, "SetMergedRange" ); in SetMergedRange()
638 for( size_t nCurrRow = nFirstRow; !bFound && (nCurrRow <= nLastRow); ++nCurrRow ) in SetMergedRange()
643 if( mxImpl->IsValidPos( nFirstCol, nFirstRow ) && mxImpl->IsValidPos( nLastCol, nLastRow ) ) in SetMergedRange()
644 … lclSetMergedRange( mxImpl->maCells, mxImpl->mnWidth, nFirstCol, nFirstRow, nLastCol, nLastRow ); in SetMergedRange()
741 size_t nFirstCol, nFirstRow, nLastCol, nLastRow; in GetMergedSize() local
742 GetMergedRange( nFirstCol, nFirstRow, nLastCol, nLastRow, nCol, nRow ); in GetMergedSize()
744 rnHeight = nLastRow - nFirstRow + 1; in GetMergedSize()
757 void Array::SetClipRange( size_t nFirstCol, size_t nFirstRow, size_t nLastCol, size_t nLastRow ) in SetClipRange() argument
760 DBG_FRAME_CHECK_COLROW( nLastCol, nLastRow, "SetClipRange" ); in SetClipRange()
764 mxImpl->mnLastClipRow = nLastRow; in SetClipRange()
859 long Array::GetRowHeight( size_t nFirstRow, size_t nLastRow ) const in GetRowHeight()
862 DBG_FRAME_CHECK_ROW( nLastRow, "GetRowHeight" ); in GetRowHeight()
863 return GetRowPosition( nLastRow + 1 ) - GetRowPosition( nFirstRow ); in GetRowHeight()
888 size_t nLastRow = bSimple ? nRow : mxImpl->GetMergedLastRow( nCol, nRow ); in GetCellSize() local
889 return Size( GetColWidth( nFirstCol, nLastCol ) + 1, GetRowHeight( nFirstRow, nLastRow ) + 1 ); in GetCellSize()
955 size_t nLastRow = mxImpl->GetMergedLastRow( nCol, nRow ); in MirrorSelfX() local
958 mxImpl->GetMirrorCol( nCol ), nLastRow ); in MirrorSelfX()
989 size_t nLastRow = mxImpl->GetMergedLastRow( nCol, nRow ); in MirrorSelfY() local
991 nCol, mxImpl->GetMirrorRow( nLastRow ), in MirrorSelfY()
1010 size_t nFirstCol, size_t nFirstRow, size_t nLastCol, size_t nLastRow, in DrawRange() argument
1014 DBG_FRAME_CHECK_COLROW( nLastCol, nLastRow, "DrawRange" ); in DrawRange()
1023 for( nRow = nFirstRow; nRow <= nLastRow; ++nRow ) in DrawRange()
1058 for( nRow = nFirstRow; nRow <= nLastRow + 1; ++nRow ) in DrawRange()
1158 for( nRow = nFirstRow + 1; nRow <= nLastRow; ++nRow ) in DrawRange()