Lines Matching refs:fValue
355 double fValue = 1.0; in importXML() local
359 fValue = rStrImpValue.toDouble(); in importXML()
365 fValue = ((double)nValue) / 100.0; in importXML()
367 rValue <<= fValue; in importXML()
375 double fValue = 0; in exportXML() local
377 if( rValue >>= fValue ) in exportXML()
379 fValue *= 100.0; in exportXML()
380 if( fValue > 0 ) fValue += 0.5; else fValue -= 0.5; in exportXML()
382 sal_Int32 nValue = (sal_Int32)fValue; in exportXML()
629 double fValue = 0; in exportXML() local
631 if( rValue >>= fValue ) in exportXML()
634 SvXMLUnitConverter::convertDouble( aOut, fValue ); in exportXML()