Lines Matching refs:aMatrix
418 double lcl_GetDoubleElement( const uno::Sequence< uno::Sequence<double> >& aMatrix, long nCol, long… in lcl_GetDoubleElement() argument
420 if ( nRow < aMatrix.getLength() ) in lcl_GetDoubleElement()
422 const uno::Sequence<double>& rRowSeq = aMatrix.getConstArray()[nRow]; in lcl_GetDoubleElement()
429 INT32 lcl_GetLongElement( const uno::Sequence< uno::Sequence<INT32> >& aMatrix, long nCol, long nRo… in lcl_GetLongElement() argument
431 if ( nRow < aMatrix.getLength() ) in lcl_GetLongElement()
433 const uno::Sequence<INT32>& rRowSeq = aMatrix.getConstArray()[nRow]; in lcl_GetLongElement()
440 …::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< double > >& aMatrix ) throw(::com::su… in transpose() argument
442 long nRowCount = aMatrix.getLength(); in transpose()
445 nColCount = aMatrix.getConstArray()[0].getLength(); in transpose()
452 aSubSeq.getArray()[nRow] = lcl_GetDoubleElement( aMatrix, nCol, nRow ); in transpose()
460 …un::star::uno::Sequence< ::com::sun::star::uno::Sequence< sal_Int32 > >& aMatrix ) throw(::com::su… in transposeInt() argument
462 long nRowCount = aMatrix.getLength(); in transposeInt()
465 nColCount = aMatrix.getConstArray()[0].getLength(); in transposeInt()
472 aSubSeq.getArray()[nRow] = lcl_GetLongElement( aMatrix, nCol, nRow ); in transposeInt()