Searched refs:nDecPlaces (Results 1 – 5 of 5) sorted by relevance
/aoo4110/main/sal/rtl/source/ |
H A D | math.cxx | 383 nDecPlaces = nPrec; in doubleToString() 389 nDecPlaces = 6; 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() 450 if ( nDecPlaces > 0 ) in doubleToString() 957 OSL_ASSERT(nDecPlaces >= -20 && nDecPlaces <= 20); in rtl_math_round() 968 if ( nDecPlaces != 0 ) in rtl_math_round() 972 if ( nDecPlaces < -20 || 20 < nDecPlaces || fValue > (DBL_MAX / 1e20) ) in rtl_math_round() 975 fFac = getN10Exp( nDecPlaces ); in rtl_math_round() [all …]
|
/aoo4110/main/sal/inc/rtl/ |
H A D | math.hxx | 43 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 73 sal_Int32 nDecPlaces, in doubleToUString() argument 90 sal_Int32 nDecPlaces, in doubleToUString() argument 105 sal_Int32 nDecPlaces, in doubleToUStringBuffer() argument 115 eFormat, nDecPlaces, cDecSeparator, pGroups, in doubleToUStringBuffer() 124 sal_Int32 nDecPlaces, in doubleToUStringBuffer() argument 132 eFormat, nDecPlaces, cDecSeparator, 0, 0, in doubleToUStringBuffer() 176 double fValue, int nDecPlaces = 0, in round() argument [all …]
|
H A D | math.h | 205 sal_Int32 nDecPlaces, 280 sal_Int32 nDecPlaces, 381 double SAL_CALL rtl_math_round(double fValue, int nDecPlaces,
|
/aoo4110/main/sc/source/ui/cctrl/ |
H A D | editfield.cxx | 73 void ScDoubleField::SetValue( double fValue, sal_Int32 nDecPlaces, bool bEraseTrailingDecZeros ) in SetValue() argument 76 nDecPlaces, lclGetDecSep(), bEraseTrailingDecZeros ) ); in SetValue()
|
/aoo4110/main/sc/source/ui/inc/ |
H A D | editfield.hxx | 39 sal_Int32 nDecPlaces = 12,
|
Completed in 18 milliseconds