Lines Matching refs:nIndex

106     void PutStringEntry( const String* pStr, sal_uInt8 bFlag, SCSIZE nIndex );
271 void PutDouble( double fVal, SCSIZE nIndex) in PutDouble() argument
272 { pMat[nIndex].fVal = fVal; } in PutDouble()
274 void PutString( const String& rStr, SCSIZE nIndex);
276 void PutEmpty( SCSIZE nIndex);
279 void PutEmptyPath( SCSIZE nIndex);
282 void PutError( sal_uInt16 nErrorCode, SCSIZE nIndex ) in PutError() argument
283 { PutDouble( CreateDoubleError( nErrorCode ), nIndex ); } in PutError()
285 void PutBoolean( bool bVal, SCSIZE nIndex);
296 sal_uInt16 GetError( SCSIZE nIndex) const in GetError()
297 { return pMat[nIndex].GetError(); } in GetError()
303 sal_uInt16 GetErrorIfNotString( SCSIZE nIndex) const in GetErrorIfNotString()
304 { return IsValue( nIndex) ? GetError( nIndex) : 0; } in GetErrorIfNotString()
309 double GetDouble( SCSIZE nIndex) const in GetDouble()
313 sal_uInt16 nError = GetDoubleErrorValue( pMat[nIndex].fVal); in GetDouble()
317 return pMat[nIndex].fVal; in GetDouble()
323 const String& GetString( SCSIZE nIndex) const in GetString()
324 { return pMat[nIndex].GetString(); } in GetString()
331 String GetString( SvNumberFormatter& rFormatter, SCSIZE nIndex) const;
338 sal_Bool IsString( SCSIZE nIndex ) const in IsString()
339 { return mnValType && IsNonValueType( mnValType[nIndex]); } in IsString()
349 sal_Bool IsEmpty( SCSIZE nIndex ) const in IsEmpty()
350 { return mnValType && ((mnValType[nIndex] & SC_MATVAL_EMPTY) == SC_MATVAL_EMPTY); } in IsEmpty()
367 sal_Bool IsEmptyPath( SCSIZE nIndex ) const in IsEmptyPath()
368 { return mnValType && ((mnValType[nIndex] & SC_MATVAL_EMPTYPATH) == SC_MATVAL_EMPTYPATH); } in IsEmptyPath()
371 sal_Bool IsValue( SCSIZE nIndex ) const in IsValue()
372 { return !mnValType || IsValueType( mnValType[nIndex]); } in IsValue()
382 sal_Bool IsValueOrEmpty( SCSIZE nIndex ) const in IsValueOrEmpty()
383 { return !mnValType || IsValueType( mnValType[nIndex] ) || in IsValueOrEmpty()
384 ((mnValType[nIndex] & SC_MATVAL_EMPTY) == SC_MATVAL_EMPTY); } in IsValueOrEmpty()
396 sal_Bool IsBoolean( SCSIZE nIndex ) const in IsBoolean()
397 { return mnValType && IsBooleanType( mnValType[nIndex]); } in IsBoolean()