Lines Matching refs:pMat

1265             ScMatrixRef pMat = static_cast<ScToken*>(p)->GetMatrix();  in PopDoubleRef()  local
1266 return new ScDBExternalRange(pDok, pMat); in PopDoubleRef()
1431 ScMatrixRef pMat = GetMatrix(); in PopDoubleRefPushMatrix() local
1432 if ( pMat ) in PopDoubleRefPushMatrix()
1433 PushMatrix( pMat ); in PopDoubleRefPushMatrix()
1479 ScMatrixRef pMat = static_cast<ScToken*>(p)->GetMatrix(); in ConvertMatrixParameters() local
1480 if ( !pMat ) in ConvertMatrixParameters()
1485 pMat->GetDimensions( nCols, nRows); in ConvertMatrixParameters()
1507 ScMatrixRef pMat = CreateMatrixFromDoubleRef( p, in ConvertMatrixParameters() local
1509 if (pMat) in ConvertMatrixParameters()
1518 ScToken* pNew = new ScMatrixToken( pMat); in ConvertMatrixParameters()
1595 ScMatrix* pMat = static_cast<ScToken*>(p)->GetMatrix(); in PopMatrix() local
1596 if ( pMat ) in PopMatrix()
1597 pMat->SetErrorInterpreter( this); in PopMatrix()
1600 return pMat; in PopMatrix()
1681 void ScInterpreter::PushMatrix(ScMatrix* pMat) in PushMatrix() argument
1684 pMat->SetErrorInterpreter( NULL); in PushMatrix()
1690 PushTempTokenWithoutError( new ScMatrixToken( pMat ) ); in PushMatrix()
1920 ScMatrixRef pMat = PopMatrix(); in GetDouble() local
1921 if ( !pMat ) in GetDouble()
1924 nVal = pMat->GetDouble( 0 ); in GetDouble()
1928 pMat->GetDimensions( nCols, nRows); in GetDouble()
1931 nVal = pMat->GetDouble( nC, nR); in GetDouble()
2029 ScMatrixRef pMat = PopMatrix(); in GetString() local
2030 if ( !pMat ) in GetString()
2034 aTempStr = pMat->GetString( *pFormatter, 0, 0); in GetString()
2040 pMat->GetDimensions( nCols, nRows); in GetString()
2044 aTempStr = pMat->GetString( *pFormatter, nC, nR); in GetString()
2071 ScMatrixRef pMat = PopMatrix(); in GetDoubleOrStringFromMatrix() local
2072 if (!pMat) in GetDoubleOrStringFromMatrix()
2075 pMatVal = pMat->Get( 0, 0, nMatValType); in GetDoubleOrStringFromMatrix()
2079 pMat->GetDimensions( nCols, nRows); in GetDoubleOrStringFromMatrix()
2082 pMatVal = pMat->Get( nC, nR, nMatValType); in GetDoubleOrStringFromMatrix()
2812 ScMatrixRef pMat = PopMatrix(); in ScMacro() local
2814 if (pMat) in ScMacro()
2816 pMat->GetDimensions(nC, nR); in ScMacro()
2828 if (pMat->IsString(nMatCol, nMatRow)) in ScMacro()
2829 p->PutString( pMat->GetString(nMatCol, nMatRow) ); in ScMacro()
2831 p->PutDouble( pMat->GetDouble(nMatCol, nMatRow)); in ScMacro()
2890 ScMatrixRef pMat = GetNewMat( nC, nR); in ScMacro() local
2891 if ( pMat ) in ScMacro()
2907 pMat->PutDouble( pV->GetDouble(), i, j ); in ScMacro()
2909 pMat->PutString( pV->GetString(), i, j ); in ScMacro()
2912 PushMatrix( pMat ); in ScMacro()