Home
last modified time | relevance | path

Searched refs:nDecPlaces (Results 1 – 5 of 5) sorted by relevance

/trunk/main/sal/rtl/source/
H A Dmath.cxx299 sal_Int32 nDecPlaces, typename T::Char cDecSeparator, in doubleToString() argument
382 if ( nDecPlaces == rtl_math_DecimalPlaces_Max ) in doubleToString()
383 nDecPlaces = nPrec; in doubleToString()
388 if ( nDecPlaces == rtl_math_DecimalPlaces_DefaultSignificance ) in doubleToString()
389 nDecPlaces = 6; in doubleToString()
390 if ( nExp < -4 || nExp >= nDecPlaces ) in doubleToString()
392 nDecPlaces = std::max< sal_Int32 >( 1, nDecPlaces - 1 ); in doubleToString()
397 nDecPlaces = std::max< sal_Int32 >( 0, nDecPlaces - nExp - 1 ); in doubleToString()
406 sal_Int32 nDigits = nDecPlaces + 1; in doubleToString()
427 ( nDigits <= 0 ? std::max< sal_Int32 >( nDecPlaces, abs(nExp) ) in doubleToString()
[all …]
/trunk/main/sal/inc/rtl/
H A Dmath.hxx43 sal_Int32 nDecPlaces, in doubleToString() argument
50 rtl_math_doubleToString(&aResult.pData, 0, 0, fValue, eFormat, nDecPlaces, in doubleToString()
59 sal_Int32 nDecPlaces, in doubleToString() argument
64 rtl_math_doubleToString(&aResult.pData, 0, 0, fValue, eFormat, nDecPlaces, in doubleToString()
73 sal_Int32 nDecPlaces, in doubleToUString() argument
80 rtl_math_doubleToUString(&aResult.pData, 0, 0, fValue, eFormat, nDecPlaces, in doubleToUString()
90 sal_Int32 nDecPlaces, in doubleToUString() argument
95 rtl_math_doubleToUString(&aResult.pData, 0, 0, fValue, eFormat, nDecPlaces, in doubleToUString()
105 sal_Int32 nDecPlaces, in doubleToUStringBuffer() argument
115 eFormat, nDecPlaces, cDecSeparator, pGroups, in doubleToUStringBuffer()
[all …]
H A Dmath.h205 sal_Int32 nDecPlaces,
280 sal_Int32 nDecPlaces,
381 double SAL_CALL rtl_math_round(double fValue, int nDecPlaces,
/trunk/main/sc/source/ui/cctrl/
H A Deditfield.cxx70 void ScDoubleField::SetValue( double fValue, sal_Int32 nDecPlaces, bool bEraseTrailingDecZeros ) in SetValue() argument
73 nDecPlaces, lclGetDecSep(), bEraseTrailingDecZeros ) ); in SetValue()
/trunk/main/sc/source/ui/inc/
H A Deditfield.hxx39 sal_Int32 nDecPlaces = 12,