|
rtl::OString | doubleToString (double fValue, rtl_math_StringFormat eFormat, sal_Int32 nDecPlaces, char cDecSeparator, sal_Int32 const *pGroups, char cGroupSeparator, bool bEraseTrailingDecZeros=false) |
| A wrapper around rtl_math_doubleToString. More...
|
|
rtl::OString | doubleToString (double fValue, rtl_math_StringFormat eFormat, sal_Int32 nDecPlaces, char cDecSeparator, bool bEraseTrailingDecZeros=false) |
| A wrapper around rtl_math_doubleToString, with no grouping. More...
|
|
void | doubleToStringBuffer (rtl::OStringBuffer &rBuffer, double fValue, rtl_math_StringFormat eFormat, sal_Int32 nDecPlaces, char cDecSeparator, sal_Int32 const *pGroups, char cGroupSeparator, bool bEraseTrailingDecZeros=false) |
| A wrapper around rtl_math_doubleToString that appends to an rtl::OStringBuffer. More...
|
|
void | doubleToStringBuffer (rtl::OStringBuffer &rBuffer, double fValue, rtl_math_StringFormat eFormat, sal_Int32 nDecPlaces, char cDecSeparator, bool bEraseTrailingDecZeros=false) |
| A wrapper around rtl_math_doubleToString that appends to an rtl::OStringBuffer, with no grouping. More...
|
|
rtl::OUString | doubleToUString (double fValue, rtl_math_StringFormat eFormat, sal_Int32 nDecPlaces, sal_Unicode cDecSeparator, sal_Int32 const *pGroups, sal_Unicode cGroupSeparator, bool bEraseTrailingDecZeros=false) |
| A wrapper around rtl_math_doubleToUString. More...
|
|
rtl::OUString | doubleToUString (double fValue, rtl_math_StringFormat eFormat, sal_Int32 nDecPlaces, sal_Unicode cDecSeparator, bool bEraseTrailingDecZeros=false) |
| A wrapper around rtl_math_doubleToUString, with no grouping. More...
|
|
void | doubleToUStringBuffer (rtl::OUStringBuffer &rBuffer, double fValue, rtl_math_StringFormat eFormat, sal_Int32 nDecPlaces, sal_Unicode cDecSeparator, sal_Int32 const *pGroups, sal_Unicode cGroupSeparator, bool bEraseTrailingDecZeros=false) |
| A wrapper around rtl_math_doubleToUString that appends to an rtl::OUStringBuffer. More...
|
|
void | doubleToUStringBuffer (rtl::OUStringBuffer &rBuffer, double fValue, rtl_math_StringFormat eFormat, sal_Int32 nDecPlaces, sal_Unicode cDecSeparator, bool bEraseTrailingDecZeros=false) |
| A wrapper around rtl_math_doubleToUString that appends to an rtl::OUStringBuffer, with no grouping. More...
|
|
double | stringToDouble (rtl::OString const &rString, char cDecSeparator, char cGroupSeparator, rtl_math_ConversionStatus *pStatus=NULL, sal_Int32 *pParsedEnd=NULL) |
| A wrapper around rtl_math_stringToDouble. More...
|
|
double | stringToDouble (rtl::OUString const &rString, sal_Unicode cDecSeparator, sal_Unicode cGroupSeparator, rtl_math_ConversionStatus *pStatus=NULL, sal_Int32 *pParsedEnd=NULL) |
| A wrapper around rtl_math_uStringToDouble. More...
|
|
double | round (double fValue, int nDecPlaces=0, rtl_math_RoundingMode eMode=rtl_math_RoundingMode_Corrected) |
| A wrapper around rtl_math_round. More...
|
|
double | pow10Exp (double fValue, int nExp) |
| A wrapper around rtl_math_pow10Exp. More...
|
|
double | approxValue (double fValue) |
| A wrapper around rtl_math_approxValue. More...
|
|
double | expm1 (double fValue) |
| A wrapper around rtl_math_expm1. More...
|
|
double | log1p (double fValue) |
| A wrapper around rtl_math_log1p. More...
|
|
double | atanh (double fValue) |
| A wrapper around rtl_math_atanh. More...
|
|
double | erf (double fValue) |
| A wrapper around rtl_math_erf. More...
|
|
double | erfc (double fValue) |
| A wrapper around rtl_math_erfc. More...
|
|
double | asinh (double fValue) |
| A wrapper around rtl_math_asinh. More...
|
|
double | acosh (double fValue) |
| A wrapper around rtl_math_acosh. More...
|
|
bool | approxEqual (double a, double b) |
| A wrapper around rtl_math_approxEqual. More...
|
|
bool | approxEqual (double a, double b, sal_Int16 nPrec) |
| Test equality of two values with an accuracy defined by nPrec. More...
|
|
double | approxAdd (double a, double b) |
| Add two values. More...
|
|
double | approxSub (double a, double b) |
| Subtract two values (a-b). More...
|
|
double | approxFloor (double a) |
| floor() method taking approxValue() into account. More...
|
|
double | approxCeil (double a) |
| ceil() method taking approxValue() into account. More...
|
|
bool | isFinite (double d) |
| Tests whether a value is neither INF nor NAN. More...
|
|
bool | isInf (double d) |
| If a value represents +INF or -INF. More...
|
|
bool | isNan (double d) |
| Test on any QNAN or SNAN. More...
|
|
bool | isSignBitSet (double d) |
| If the sign bit is set. More...
|
|
void | setInf (double *pd, bool bNegative) |
| Set to +INF if bNegative==false or -INF if bNegative==true. More...
|
|
void | setNan (double *pd) |
| Set a QNAN. More...
|
|
bool | isValidArcArg (double d) |
| If a value is a valid argument for sin(), cos(), tan(). More...
|
|
double | sin (double d) |
| Safe sin(), returns NAN if not valid. More...
|
|
double | cos (double d) |
| Safe cos(), returns NAN if not valid. More...
|
|
double | tan (double d) |
| Safe tan(), returns NAN if not valid. More...
|
|