Lines Matching refs:FixedDecimal

281     return select(FixedDecimal(number));  in select()
286 return select(FixedDecimal(number)); in select()
388 FixedDecimal* destFd, int32_t destCapacity, in getSamplesFromString()
414 FixedDecimal fixed(sampleRange, status); in getSamplesFromString()
425 FixedDecimal fixedLo(sampleRange.tempSubStringBetween(0, tildeIndex), status); in getSamplesFromString()
426 FixedDecimal fixedHi(sampleRange.tempSubStringBetween(tildeIndex+1), status); in getSamplesFromString()
461 FixedDecimal newSample = FixedDecimal::createWithExponent(sampleValue, v, e); in getSamplesFromString()
500 PluralRules::getSamples(const UnicodeString &keyword, FixedDecimal *dest, in getSamples()
1604 FixedDecimal::FixedDecimal(double n, int32_t v, int64_t f, int32_t e) { in FixedDecimal() function in FixedDecimal
1621 FixedDecimal::FixedDecimal(double n, int32_t v, int64_t f) { in FixedDecimal() function in FixedDecimal
1625 FixedDecimal::FixedDecimal(double n, int32_t v) { in FixedDecimal() function in FixedDecimal
1630 FixedDecimal::FixedDecimal(double n) { in FixedDecimal() function in FixedDecimal
1634 FixedDecimal::FixedDecimal() { in FixedDecimal() function in FixedDecimal
1642 FixedDecimal::FixedDecimal(const UnicodeString &num, UErrorCode &status) { in FixedDecimal() function in FixedDecimal
1678 FixedDecimal::FixedDecimal(const FixedDecimal &other) { in FixedDecimal() function in FixedDecimal
1691 FixedDecimal::~FixedDecimal() = default;
1693 FixedDecimal FixedDecimal::createWithExponent(double n, int32_t v, int32_t e) { in createWithExponent()
1694 return FixedDecimal(n, v, getFractionalDigits(n, v), e); in createWithExponent()
1698 void FixedDecimal::init(double n) { in init()
1704 void FixedDecimal::init(double n, int32_t v, int64_t f) { in init()
1710 void FixedDecimal::init(double n, int32_t v, int64_t f, int32_t e) { in init()
1745 UBool FixedDecimal::quickInit(double n) { in quickInit()
1764 int32_t FixedDecimal::decimals(double n) { in decimals()
1799 int64_t FixedDecimal::getFractionalDigits(double n, int32_t v) { in getFractionalDigits()
1822 void FixedDecimal::adjustForMinFractionDigits(int32_t minFractionDigits) { in adjustForMinFractionDigits()
1838 double FixedDecimal::getPluralOperand(PluralOperand operand) const { in getPluralOperand()
1851 bool FixedDecimal::isNaN() const { in isNaN()
1855 bool FixedDecimal::isInfinite() const { in isInfinite()
1859 bool FixedDecimal::hasIntegerValue() const { in hasIntegerValue()
1863 bool FixedDecimal::isNanOrInfinity() const { in isNanOrInfinity()
1867 int32_t FixedDecimal::getVisibleFractionDigitCount() const { in getVisibleFractionDigitCount()
1871 bool FixedDecimal::operator==(const FixedDecimal &other) const { in operator ==()
1876 UnicodeString FixedDecimal::toString() const { in toString()