Lines Matching refs:nRow

38 	sal_Int32	nRow;  member in ScBigAddress
43 ScBigAddress() : nRow(0), nCol(0), nTab(0) {} in ScBigAddress()
45 : nRow( nRowP ), nCol( nColP ), nTab( nTabP ) {} in ScBigAddress()
47 : nRow( r.nRow ), nCol( r.nCol ), nTab( r.nTab ) {} in ScBigAddress()
49 : nRow( r.Row() ), nCol( r.Col() ), nTab( r.Tab() ) {} in ScBigAddress()
52 sal_Int32 Row() const { return nRow; } in Row()
56 { nCol = nColP; nRow = nRowP; nTab = nTabP; } in Set()
58 void SetRow( sal_Int32 nRowP ) { nRow = nRowP; } in SetRow()
61 void IncRow( sal_Int32 n = 1 ) { nRow += n; } in IncRow()
65 { nColP = nCol; nRowP = nRow; nTabP = nTab; } in GetVars()
72 { nCol = r.nCol; nRow = r.nRow; nTab = r.nTab; return *this; } in operator =()
74 { nCol = r.Col(); nRow = r.Row(); nTab = r.Tab(); return *this; } in operator =()
76 { return nCol == r.nCol && nRow == r.nRow && nTab == r.nTab; } in operator ==()
94 if ( r.nRow < nRow ) in PutInOrder()
96 nTmp = r.nRow; in PutInOrder()
97 r.nRow = nRow; in PutInOrder()
98 nRow = nTmp; in PutInOrder()
114 ((0 <= nRow && nRow <= MAXROW) in IsValid()
115 || nRow == nInt32Min || nRow == nInt32Max) && in IsValid()
135 if ( nRow < 0 ) in MakeAddress()
137 else if ( nRow > MAXROW ) in MakeAddress()
140 nRowA = (SCROW) nRow; in MakeAddress()
155 rStream << rAdr.nCol << rAdr.nRow << rAdr.nTab; in operator <<()
162 rStream >> rAdr.nCol >> rAdr.nRow >> rAdr.nTab; in operator >>()
185 ScBigRange( sal_Int32 nCol, sal_Int32 nRow, sal_Int32 nTab ) in ScBigRange() argument
186 : aStart( nCol, nRow, nTab ), aEnd( aStart ) {} in ScBigRange()