Home
last modified time | relevance | path

Searched refs:ERoundingMode (Results 1 – 15 of 15) sorted by relevance

/external/icu/icu4c/source/i18n/unicode/
Drbnf.h997 virtual ERoundingMode getRoundingMode(void) const;
1004 virtual void setRoundingMode(ERoundingMode roundingMode);
1086 ERoundingMode fRoundingMode;
Dnumfmt.h186 enum ERoundingMode { enum
1048 virtual ERoundingMode getRoundingMode(void) const;
1055 virtual void setRoundingMode(ERoundingMode roundingMode);
Ddecimfmt.h1402 virtual ERoundingMode getRoundingMode(void) const U_OVERRIDE;
1412 virtual void setRoundingMode(ERoundingMode roundingMode) U_OVERRIDE;
/external/icu/libicu/cts_headers/unicode/
Drbnf.h997 virtual ERoundingMode getRoundingMode(void) const;
1004 virtual void setRoundingMode(ERoundingMode roundingMode);
1086 ERoundingMode fRoundingMode;
Dnumfmt.h186 enum ERoundingMode { enum
1048 virtual ERoundingMode getRoundingMode(void) const;
1055 virtual void setRoundingMode(ERoundingMode roundingMode);
Ddecimfmt.h1402 virtual ERoundingMode getRoundingMode(void) const U_OVERRIDE;
1412 virtual void setRoundingMode(ERoundingMode roundingMode) U_OVERRIDE;
/external/icu/icu4c/source/test/intltest/
Dnumberformattesttuple.cpp203 *static_cast<DecimalFormat::ERoundingMode *>(roundPtr) = (DecimalFormat::ERoundingMode) val; in strToERounding()
208 DecimalFormat::ERoundingMode rounding = in eRoundingToStr()
209 *static_cast<const DecimalFormat::ERoundingMode *>(roundPtr); in eRoundingToStr()
Dnumberformattesttuple.h111 DecimalFormat::ERoundingMode roundingMode;
Ddcfmapts.cpp521 pat.setRoundingMode((DecimalFormat::ERoundingMode)mode); in testRounding()
522 if(pat.getRoundingMode() != (DecimalFormat::ERoundingMode)mode){ in testRounding()
582 pat.setRoundingMode((DecimalFormat::ERoundingMode)0); in testRoundingInc()
1305 df->setRoundingMode(DecimalFormat::ERoundingMode::kRoundDown); in testInvalidObject()
Dnumfmtst.h422 const DecimalFormat::ERoundingMode *roundingModes,
Dnumfmtst.cpp3304 df->setRoundingMode((DecimalFormat::ERoundingMode)mode); in TestRounding()
7820 DecimalFormat::ERoundingMode mode;
7881 DecimalFormat::ERoundingMode roundingModes[] = { in TestRoundingScientific10542()
8058 const DecimalFormat::ERoundingMode *roundingModes, in verifyRounding()
9240 …static const NumberFormat::ERoundingMode newRoundingMode = NumberFormat::ERoundingMode::kRoundCeil… in Test11645_ApplyPatternEquality()
/external/icu/icu4c/source/i18n/
Drbnf.cpp698 , fRoundingMode(DecimalFormat::ERoundingMode::kRoundUnnecessary) in RuleBasedNumberFormat()
723 , fRoundingMode(DecimalFormat::ERoundingMode::kRoundUnnecessary) in RuleBasedNumberFormat()
748 , fRoundingMode(DecimalFormat::ERoundingMode::kRoundUnnecessary) in RuleBasedNumberFormat()
772 , fRoundingMode(DecimalFormat::ERoundingMode::kRoundUnnecessary) in RuleBasedNumberFormat()
797 , fRoundingMode(DecimalFormat::ERoundingMode::kRoundUnnecessary) in RuleBasedNumberFormat()
819 , fRoundingMode(DecimalFormat::ERoundingMode::kRoundUnnecessary) in RuleBasedNumberFormat()
886 , fRoundingMode(DecimalFormat::ERoundingMode::kRoundUnnecessary) in RuleBasedNumberFormat()
1253 …if (getRoundingMode() != DecimalFormat::ERoundingMode::kRoundUnnecessary && !uprv_isNaN(number) &&… in format()
1975 DecimalFormat::ERoundingMode RuleBasedNumberFormat::getRoundingMode() const { in getRoundingMode()
1984 void RuleBasedNumberFormat::setRoundingMode(DecimalFormat::ERoundingMode roundingMode) { in setRoundingMode()
Ddecimfmt.cpp31 using ERoundingMode = icu::DecimalFormat::ERoundingMode; typedef
213 setRoundingMode((DecimalFormat::ERoundingMode) newValue); in setAttribute()
1036 ERoundingMode DecimalFormat::getRoundingMode(void) const { in getRoundingMode()
1040 …return static_cast<ERoundingMode>(DecimalFormatProperties::getDefault().roundingMode.getNoError()); in getRoundingMode()
1043 return static_cast<ERoundingMode>(fields->exportedProperties.roundingMode.getNoError()); in getRoundingMode()
1046 void DecimalFormat::setRoundingMode(ERoundingMode roundingMode) { in setRoundingMode()
Dnumfmt.cpp1508 NumberFormat::ERoundingMode NumberFormat::getRoundingMode() const { in getRoundingMode()
1510 return NumberFormat::ERoundingMode::kRoundUnnecessary; in getRoundingMode()
1518 void NumberFormat::setRoundingMode(NumberFormat::ERoundingMode /*roundingMode*/) { in setRoundingMode() argument
Dunum.cpp586 return nf->setRoundingMode((NumberFormat::ERoundingMode)newValue); in unum_setAttribute()