Lines Matching refs:nRow

263 long ScTable::GetNeededSize( SCCOL nCol, SCROW nRow,  in GetNeededSize()  argument
274 ( nRow, pDev, nPPTX, nPPTY, rZoomX, rZoomY, bWidth, aOptions ); in GetNeededSize()
878 sal_Bool ScTable::IsEmptyLine( SCROW nRow, SCCOL nStartCol, SCCOL nEndCol ) in IsEmptyLine() argument
882 if (aCol[i].HasDataAt(nRow)) in IsEmptyLine()
942 sal_Bool ScTable::ValidNextPos( SCCOL nCol, SCROW nRow, const ScMarkData& rMark, in ValidNextPos() argument
945 if (!ValidCol(nCol) || !ValidRow(nRow)) in ValidNextPos()
948 if (pDocument->HasAttrib(nCol, nRow, nTab, nCol, nRow, nTab, HASATTR_OVERLAPPED)) in ValidNextPos()
952 if (bMarked && !rMark.IsCellMarked(nCol,nRow)) in ValidNextPos()
956 GetAttr(nCol,nRow,ATTR_PROTECTION))->GetProtection()) in ValidNextPos()
965 if (RowHidden(nRow)) in ValidNextPos()
983 SCsROW nRow = rRow; in GetNextPos() local
986 nRow = sal::static_int_cast<SCsROW>( nRow + nMovY ); in GetNextPos()
994 nRow = rMark.GetNextMarked( nCol, nRow, bUp ); in GetNextPos()
995 while ( VALIDROW(nRow) && in GetNextPos()
996 …(RowHidden(nRow) || pDocument->HasAttrib(nCol, nRow, nTab, nCol, nRow, nTab, HASATTR_OVERLAPPED)) ) in GetNextPos()
999 nRow += nMovY; in GetNextPos()
1000 nRow = rMark.GetNextMarked( nCol, nRow, bUp ); in GetNextPos()
1003 while ( nRow < 0 || nRow > MAXROW ) in GetNextPos()
1020 if (nRow < 0) in GetNextPos()
1021 nRow = MAXROW; in GetNextPos()
1022 else if (nRow > MAXROW) in GetNextPos()
1023 nRow = 0; in GetNextPos()
1024 nRow = rMark.GetNextMarked( nCol, nRow, bUp ); in GetNextPos()
1025 while ( VALIDROW(nRow) && in GetNextPos()
1026 …(RowHidden(nRow) || pDocument->HasAttrib(nCol, nRow, nTab, nCol, nRow, nTab, HASATTR_OVERLAPPED)) ) in GetNextPos()
1029 nRow += nMovY; in GetNextPos()
1030 nRow = rMark.GetNextMarked( nCol, nRow, bUp ); in GetNextPos()
1041 --nRow; in GetNextPos()
1042 if (nRow<0) in GetNextPos()
1043 nRow = MAXROW; in GetNextPos()
1048 ++nRow; in GetNextPos()
1049 if (nRow>MAXROW) in GetNextPos()
1050 nRow = 0; in GetNextPos()
1053 if ( !ValidNextPos(nCol, nRow, rMark, bMarked, bUnprotected) ) in GetNextPos()
1061 pNextRows[i] = (i<nCol) ? (nRow+1) : nRow; in GetNextPos()
1078 nRow = nMinRow; in GetNextPos()
1080 if ( nRow > MAXROW ) in GetNextPos()
1084 nRow = 0; in GetNextPos()
1089 while ( !ValidNextPos(nCol, nRow, rMark, bMarked, bUnprotected) ); in GetNextPos()
1094 pNextRows[i] = (i>nCol) ? (nRow-1) : nRow; in GetNextPos()
1111 nRow = nMaxRow; in GetNextPos()
1113 if ( nRow < 0 ) in GetNextPos()
1117 nRow = MAXROW; in GetNextPos()
1122 while ( !ValidNextPos(nCol, nRow, rMark, bMarked, bUnprotected) ); in GetNextPos()
1133 if (VALIDCOLROW(nCol,nRow)) in GetNextPos()
1136 rRow = nRow; in GetNextPos()
1466 SCROW nRow = aIter.getRow(); in ExtendPrintArea() local
1467 if (nRow > nEndRow) in ExtendPrintArea()
1471 MaybeAddExtraColumn(nNewCol, nRow, pDev, nPPTX, nPPTY); in ExtendPrintArea()
1485 void ScTable::MaybeAddExtraColumn(SCCOL& rCol, SCROW nRow, OutputDevice* pDev, double nPPTX, double… in MaybeAddExtraColumn() argument
1487 ScBaseCell* pCell = aCol[rCol].GetCell(nRow); in MaybeAddExtraColumn()
1504 nRow, pDev, nPPTX, nPPTY, aZoom, aZoom, true, aOptions ); in MaybeAddExtraColumn()
1516 const ScPatternAttr* pPattern = GetPattern( rCol, nRow ); in MaybeAddExtraColumn()
1519 pCondSet = pDocument->GetCondResult( rCol, nRow, nTab ); in MaybeAddExtraColumn()
1539 ScBaseCell* pNextCell = aCol[nNewCol+1].GetCell(nRow); in MaybeAddExtraColumn()
1654 ScBaseCell* ScTable::VisibleDataCellIterator::reset(SCROW nRow) in reset() argument
1656 if (nRow > MAXROW) in reset()
1663 if (!mrRowSegs.getRangeData(nRow, aData)) in reset()
1672 mnCurRow = nRow; in reset()