Lines Matching refs:nType

132 		sal_uInt8 nType;  in ScMatrix()  local
133 rStream >> nType; in ScMatrix()
134 if ( nType == CELLTYPE_VALUE ) in ScMatrix()
145 if ( nType != CELLTYPE_NONE ) in ScMatrix()
152 mnValType[i] = ( nType == CELLTYPE_NONE ? SC_MATVAL_EMPTY : SC_MATVAL_STRING ); in ScMatrix()
155 if ( nType == CELLTYPE_STRING ) in ScMatrix()
199 sal_uInt8 nType = CELLTYPE_VALUE; in Store() local
208 nType = CELLTYPE_STRING; in Store()
210 nType = CELLTYPE_NONE; in Store()
212 rStream << nType; in Store()
213 if ( nType == CELLTYPE_VALUE ) in Store()
215 else if ( nType == CELLTYPE_STRING ) in Store()
487 const ScMatrixValue* ScMatrix::Get(SCSIZE nC, SCSIZE nR, ScMatValType& nType) const in Get()
493 nType = mnValType[nIndex]; in Get()
495 nType = SC_MATVAL_VALUE; in Get()
502 nType = SC_MATVAL_EMPTY; in Get()
516 ScMatValType nType; in MatCopy() local
523 if (IsNonValueType( (nType = mnValType[nStart+j]))) in MatCopy()
524 mRes.PutStringEntry( pMat[nStart+j].pS, nType, nStart+j ); in MatCopy()
528 mRes.mnValType[nStart+j] = nType; in MatCopy()
546 ScMatValType nType; in MatCopy() local
554 if (IsNonValueType( (nType = mnValType[nStart+j]))) in MatCopy()
555 mRes.PutStringEntry( pMat[nStart+j].pS, nType, nResStart+j ); in MatCopy()
559 mRes.mnValType[nResStart+j] = nType; in MatCopy()
588 ScMatValType nType; in MatTrans() local
595 if (IsNonValueType( (nType = mnValType[nStart+j]))) in MatTrans()
596 mRes.PutStringEntry( pMat[nStart+j].pS, nType, j*mRes.nRowCount+i ); in MatTrans()
600 mRes.mnValType[j*mRes.nRowCount+i] = nType; in MatTrans()