Lines Matching refs:nR
42 void ScMatrix::CreateMatrix(SCSIZE nC, SCSIZE nR) // nur fuer ctor in CreateMatrix() argument
46 nRowCount = nR; in CreateMatrix()
85 void ScMatrix::Resize( SCSIZE nC, SCSIZE nR) in Resize() argument
88 CreateMatrix(nC, nR); in Resize()
117 sal_uInt16 nR; in ScMatrix() local
120 rStream >> nR; in ScMatrix()
122 CreateMatrix(nC, nR); in ScMatrix()
129 SCSIZE nReadCount = (SCSIZE) nC * nR; in ScMatrix()
254 void ScMatrix::PutDouble(double fVal, SCSIZE nC, SCSIZE nR) in PutDouble() argument
256 if (ValidColRow( nC, nR)) in PutDouble()
257 PutDouble( fVal, CalcOffset( nC, nR) ); in PutDouble()
264 void ScMatrix::PutString(const String& rStr, SCSIZE nC, SCSIZE nR) in PutString() argument
266 if (ValidColRow( nC, nR)) in PutString()
267 PutString( rStr, CalcOffset( nC, nR) ); in PutString()
318 void ScMatrix::PutEmpty(SCSIZE nC, SCSIZE nR) in PutEmpty() argument
320 if (ValidColRow( nC, nR)) in PutEmpty()
321 PutEmpty( CalcOffset( nC, nR) ); in PutEmpty()
345 void ScMatrix::PutEmptyPath(SCSIZE nC, SCSIZE nR) in PutEmptyPath() argument
347 if (ValidColRow( nC, nR)) in PutEmptyPath()
348 PutEmptyPath( CalcOffset( nC, nR) ); in PutEmptyPath()
372 void ScMatrix::PutBoolean(bool bVal, SCSIZE nC, SCSIZE nR) in PutBoolean() argument
374 if (ValidColRow( nC, nR)) in PutBoolean()
375 PutBoolean( bVal, CalcOffset( nC, nR) ); in PutBoolean()
397 sal_uInt16 ScMatrix::GetError( SCSIZE nC, SCSIZE nR) const in GetError()
399 if (ValidColRowOrReplicated( nC, nR )) in GetError()
400 return GetError( CalcOffset( nC, nR) ); in GetError()
408 double ScMatrix::GetDouble(SCSIZE nC, SCSIZE nR) const in GetDouble()
410 if (ValidColRowOrReplicated( nC, nR )) in GetDouble()
411 return GetDouble( CalcOffset( nC, nR) ); in GetDouble()
419 const String& ScMatrix::GetString(SCSIZE nC, SCSIZE nR) const in GetString()
421 if (ValidColRowOrReplicated( nC, nR )) in GetString()
423 SCSIZE nIndex = CalcOffset( nC, nR); in GetString()
472 String ScMatrix::GetString( SvNumberFormatter& rFormatter, SCSIZE nC, SCSIZE nR) const in GetString()
474 if (ValidColRowOrReplicated( nC, nR )) in GetString()
476 SCSIZE nIndex = CalcOffset( nC, nR); in GetString()
487 const ScMatrixValue* ScMatrix::Get(SCSIZE nC, SCSIZE nR, ScMatValType& nType) const in Get() argument
489 if (ValidColRowOrReplicated( nC, nR )) in Get()
491 SCSIZE nIndex = CalcOffset( nC, nR); in Get()