Home
last modified time | relevance | path

Searched refs:pMatrix (Results 1 – 25 of 37) sorted by path

12

/trunk/main/icc/
H A DSampleICC-1.3.2.patch2972 - sprintf(buf, "%8.4lf %8.4lf %8.4lf\r\n", icFtoD(pMatrix[0]), icFtoD(pMatrix[1]), icFtoD(pMatrix[…
2973 + sprintf(buf, "%8.4lf %8.4lf %8.4lf\n", icFtoD(pMatrix[0]), icFtoD(pMatrix[1]), icFtoD(pMatrix[2]…
2975 - sprintf(buf, "%8.4lf %8.4lf %8.4lf\r\n", icFtoD(pMatrix[3]), icFtoD(pMatrix[4]), icFtoD(pMatrix[…
2976 + sprintf(buf, "%8.4lf %8.4lf %8.4lf\n", icFtoD(pMatrix[3]), icFtoD(pMatrix[4]), icFtoD(pMatrix[5]…
2978 - sprintf(buf, "%8.4lf %8.4lf %8.4lf\r\n", icFtoD(pMatrix[6]), icFtoD(pMatrix[7]), icFtoD(pMatrix[…
2979 + sprintf(buf, "%8.4lf %8.4lf %8.4lf\n", icFtoD(pMatrix[6]), icFtoD(pMatrix[7]), icFtoD(pMatrix[8]…
/trunk/main/sc/inc/
H A Drangeseq.hxx41 const ScMatrix* pMatrix );
45 const ScMatrix* pMatrix );
49 const ScMatrix* pMatrix, SvNumberFormatter* pFormatter );
61 const ScMatrix* pMatrix, bool bDataTypes = false );
H A Dtoken.hxx171 ScMatrixRef pMatrix; member in ScMatrixToken
174 ScToken( formula::svMatrix ), pMatrix( p ) {} in ScMatrixToken()
176 ScToken( r ), pMatrix( r.pMatrix ) {} in ScMatrixToken()
/trunk/main/sc/source/core/tool/
H A Daddincol.cxx1679 ScMatrix* pMatrix = xMatrix; in SetResult() local
1685 pMatrix->PutDouble( pColArr[nCol], in SetResult()
1689 pMatrix->PutDouble( 0.0, in SetResult()
1722 ScMatrix* pMatrix = xMatrix; in SetResult() local
1728 pMatrix->PutDouble( pColArr[nCol], in SetResult()
1732 pMatrix->PutDouble( 0.0, in SetResult()
1765 ScMatrix* pMatrix = xMatrix; in SetResult() local
1771 pMatrix->PutString( String( pColArr[nCol] ), in SetResult()
1775 pMatrix->PutString( EMPTY_STRING, in SetResult()
H A Dcompiler.cxx5072 const ScMatrix* pMatrix = static_cast<ScToken*>(pTokenP)->GetMatrix(); in CreateStringFromMatrix() local
5075 pMatrix->GetDimensions( nMaxC, nMaxR); in CreateStringFromMatrix()
5092 if( pMatrix->IsValue( nC, nR ) ) in CreateStringFromMatrix()
5095 const ScMatrixValue* pVal = pMatrix->Get( nC, nR, nType); in CreateStringFromMatrix()
5108 else if( pMatrix->IsEmpty( nC, nR ) ) in CreateStringFromMatrix()
5110 else if( pMatrix->IsString( nC, nR ) ) in CreateStringFromMatrix()
5111 AppendString( rBuffer, pMatrix->GetString( nC, nR ) ); in CreateStringFromMatrix()
H A Drangeseq.cxx98 if (!pMatrix) in FillLongArray()
112 if ( pMatrix->IsString( nCol, nRow ) ) in FillLongArray()
154 if (!pMatrix) in FillDoubleArray()
168 if ( pMatrix->IsString( nCol, nRow ) ) in FillDoubleArray()
217 if (!pMatrix) in FillStringArray()
233 if ( pMatrix->IsString( nCol, nRow ) ) in FillStringArray()
235 if ( !pMatrix->IsEmpty( nCol, nRow ) ) in FillStringArray()
320 if (!pMatrix) in FillMixedArray()
335 if ( pMatrix->IsString( nCol, nRow ) ) in FillMixedArray()
417 ScMatrix* pMatrix = xMatrix; in CreateMixedMatrix() local
[all …]
H A Dtoken.cxx829 const ScMatrix* ScMatrixToken::GetMatrix() const { return pMatrix; } in GetMatrix()
830 ScMatrix* ScMatrixToken::GetMatrix() { return pMatrix; } in GetMatrix()
833 return FormulaToken::operator==( r ) && pMatrix == static_cast<const ScToken&>(r).GetMatrix(); in operator ==()
/trunk/main/sc/source/filter/excel/
H A Dexcform.cxx1894 ScMatrix* pMatrix; in ReadExtensionArray() local
1911 pMatrix = aPool.GetMatrix( n ); in ReadExtensionArray()
1913 if( NULL != pMatrix ) in ReadExtensionArray()
1915 pMatrix->Resize(nCols, nRows); in ReadExtensionArray()
1916 pMatrix->GetDimensions( nC, nR); in ReadExtensionArray()
1920 pMatrix = NULL; in ReadExtensionArray()
1937 if( NULL != pMatrix ) in ReadExtensionArray()
1945 if( NULL != pMatrix ) in ReadExtensionArray()
1962 if( NULL != pMatrix ) in ReadExtensionArray()
1971 if( NULL != pMatrix ) in ReadExtensionArray()
[all …]
H A Dxeformula.cxx1299 const ScMatrix* pMatrix = static_cast< const ScToken* >( rTokData.mpScToken )->GetMatrix(); in ProcessMatrix() local
1300 if( pMatrix && mxData->mrCfg.mbAllowArrays ) in ProcessMatrix()
1303 pMatrix->GetDimensions( nScCols, nScRows ); in ProcessMatrix()
1322 const ScMatrixValue* pMatVal = pMatrix->Get( nScCol, nScRow, nType ); in ProcessMatrix()
/trunk/main/sc/source/filter/xml/
H A DXMLDDELinksContext.cxx172 … ScMatrixRef pMatrix = new ScMatrix( static_cast<SCSIZE>(nColumns), static_cast<SCSIZE>(nRows) ); in EndElement() local
191 pMatrix->PutEmpty( nScCol, nScRow ); in EndElement()
193 pMatrix->PutString( aItr->sValue, nScCol, nScRow ); in EndElement()
195 pMatrix->PutDouble( aItr->fValue, nScCol, nScRow ); in EndElement()
201 …cImport().GetDocument()->SetDdeLinkResultMatrix( static_cast< sal_uInt16 >( nPosition ), pMatrix ); in EndElement()
H A DXMLExportDDELinks.cxx99 const ScMatrix* pMatrix(NULL); in WriteTable() local
101 pMatrix = rExport.GetDocument()->GetDdeLinkResultMatrix( static_cast<sal_uInt16>(nPos) ); in WriteTable()
102 if (pMatrix) in WriteTable()
106 pMatrix->GetDimensions( nuCol, nuRow ); in WriteTable()
130 …const ScMatrixValue* pMatVal = pMatrix->Get( static_cast<SCSIZE>(nColumn), static_cast<SCSIZE>(nRo… in WriteTable()
/trunk/main/sc/source/ui/unoobj/
H A Dlinkuno.cxx1212 const ScMatrix* pMatrix = pDoc->GetDdeLinkResultMatrix( nPos ); in getResults() local
1213 if ( pMatrix ) in getResults()
1216 if ( ScRangeToSequence::FillMixedArray( aAny, pMatrix, true ) ) in getResults()
/trunk/main/sccomp/source/solver/
H A Dsolver.cxx478 double* pMatrix = new double[nCompSize]; // not always completely used in solve() local
489 pMatrix[nMatrixPos] = fCoeff; in solve()
548 pMatrixBegin, pMatrixCount, pMatrixIndex, pMatrix, in solve()
554 delete[] pMatrix; in solve()
/trunk/main/starmath/source/
H A Dmathmlexport.cxx1467 const SmMatrixNode *pMatrix = static_cast<const SmMatrixNode *>(pNode); in ExportMatrix() local
1469 for (sal_uLong y = 0; y < pMatrix->GetNumRows(); y++) in ExportMatrix()
1472 for (sal_uLong x = 0; x < pMatrix->GetNumCols(); x++) in ExportMatrix()
H A Dmathtype.cxx2231 void MathType::HandleSmMatrix(SmMatrixNode *pMatrix,int nLevel) in HandleSmMatrix() argument
2237 *pS << sal_uInt8(pMatrix->GetNumRows()); // v_just in HandleSmMatrix()
2238 *pS << sal_uInt8(pMatrix->GetNumCols()); // v_just in HandleSmMatrix()
2239 int nBytes=(pMatrix->GetNumRows()+1)*2/8; in HandleSmMatrix()
2240 if (((pMatrix->GetNumRows()+1)*2)%8) in HandleSmMatrix()
2244 nBytes=(pMatrix->GetNumCols()+1)*2/8; in HandleSmMatrix()
2245 if (((pMatrix->GetNumCols()+1)*2)%8) in HandleSmMatrix()
2249 sal_uInt16 nSize = pMatrix->GetNumSubNodes(); in HandleSmMatrix()
2251 if (SmNode *pTemp = pMatrix->GetSubNode(i)) in HandleSmMatrix()
H A Dmathtype.hxx116 void HandleSmMatrix(SmMatrixNode *pMatrix,int nLevel);
/trunk/main/svgio/inc/svgio/svgreader/
H A Dsvgcirclenode.hxx71 …omMatrix* pMatrix = 0) { if(mpaTransform) delete mpaTransform; mpaTransform = 0; if(pMatrix) mpaTr… in setTransform() argument
H A Dsvgclippathnode.hxx66 …omMatrix* pMatrix = 0) { if(mpaTransform) delete mpaTransform; mpaTransform = 0; if(pMatrix) mpaTr… in setTransform() argument
H A Dsvgellipsenode.hxx76 …omMatrix* pMatrix = 0) { if(mpaTransform) delete mpaTransform; mpaTransform = 0; if(pMatrix) mpaTr… in setTransform() argument
H A Dsvggnode.hxx57 …omMatrix* pMatrix = 0) { if(mpaTransform) delete mpaTransform; mpaTransform = 0; if(pMatrix) mpaTr… in setTransform() argument
H A Dsvggradientnode.hxx128 void setGradientTransform(const basegfx::B2DHomMatrix* pMatrix = 0);
H A Dsvgimagenode.hxx71 …omMatrix* pMatrix = 0) { if(mpaTransform) delete mpaTransform; mpaTransform = 0; if(pMatrix) mpaTr… in setTransform() argument
H A Dsvglinenode.hxx76 …omMatrix* pMatrix = 0) { if(mpaTransform) delete mpaTransform; mpaTransform = 0; if(pMatrix) mpaTr… in setTransform() argument
H A Dsvgmasknode.hxx83 …omMatrix* pMatrix = 0) { if(mpaTransform) delete mpaTransform; mpaTransform = 0; if(pMatrix) mpaTr… in setTransform() argument
H A Dsvgpathnode.hxx64 …omMatrix* pMatrix = 0) { if(mpaTransform) delete mpaTransform; mpaTransform = 0; if(pMatrix) mpaTr… in setTransform() argument

Completed in 166 milliseconds

12