Lines Matching refs:pMatrix

96 sal_Bool ScRangeToSequence::FillLongArray( uno::Any& rAny, const ScMatrix* pMatrix )  in FillLongArray()  argument
98 if (!pMatrix) in FillLongArray()
103 pMatrix->GetDimensions( nColCount, nRowCount ); in FillLongArray()
112 if ( pMatrix->IsString( nCol, nRow ) ) in FillLongArray()
115 pColAry[nCol] = lcl_DoubleToLong( pMatrix->GetDouble( nCol, nRow ) ); in FillLongArray()
152 sal_Bool ScRangeToSequence::FillDoubleArray( uno::Any& rAny, const ScMatrix* pMatrix ) in FillDoubleArray() argument
154 if (!pMatrix) in FillDoubleArray()
159 pMatrix->GetDimensions( nColCount, nRowCount ); in FillDoubleArray()
168 if ( pMatrix->IsString( nCol, nRow ) ) in FillDoubleArray()
171 pColAry[nCol] = pMatrix->GetDouble( nCol, nRow ); in FillDoubleArray()
214 sal_Bool ScRangeToSequence::FillStringArray( uno::Any& rAny, const ScMatrix* pMatrix, in FillStringArray() argument
217 if (!pMatrix) in FillStringArray()
222 pMatrix->GetDimensions( nColCount, nRowCount ); in FillStringArray()
233 if ( pMatrix->IsString( nCol, nRow ) ) in FillStringArray()
235 if ( !pMatrix->IsEmpty( nCol, nRow ) ) in FillStringArray()
236 aStr = pMatrix->GetString( nCol, nRow ); in FillStringArray()
240 double fVal = pMatrix->GetDouble( nCol, nRow ); in FillStringArray()
318 sal_Bool ScRangeToSequence::FillMixedArray( uno::Any& rAny, const ScMatrix* pMatrix, bool bDataType… in FillMixedArray() argument
320 if (!pMatrix) in FillMixedArray()
325 pMatrix->GetDimensions( nColCount, nRowCount ); in FillMixedArray()
335 if ( pMatrix->IsString( nCol, nRow ) ) in FillMixedArray()
338 if ( !pMatrix->IsEmpty( nCol, nRow ) ) in FillMixedArray()
339 aStr = pMatrix->GetString( nCol, nRow ); in FillMixedArray()
344 double fVal = pMatrix->GetDouble( nCol, nRow ); in FillMixedArray()
345 if (bDataTypes && pMatrix->IsBoolean( nCol, nRow )) in FillMixedArray()
417 ScMatrix* pMatrix = xMatrix; in CreateMixedMatrix() local
419 pMatrix->GetDimensions( nCols, nRows); in CreateMixedMatrix()
436 pMatrix->PutBoolean( (fVal ? true : false), in CreateMixedMatrix()
440 pMatrix->PutDouble( fVal, in CreateMixedMatrix()
451 pMatrix->PutString( String( aUStr ), in CreateMixedMatrix()
455 pMatrix->PutEmpty( in CreateMixedMatrix()
462 pMatrix->PutEmpty( in CreateMixedMatrix()