• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/ICU-511.35/icuSources/i18n/

Lines Matching refs:newValue

2015 DecimalFormat::setPositivePrefix(const UnicodeString& newValue)
2017 fPositivePrefix = newValue;
2036 DecimalFormat::setNegativePrefix(const UnicodeString& newValue)
2038 fNegativePrefix = newValue;
2057 DecimalFormat::setPositiveSuffix(const UnicodeString& newValue)
2059 fPositiveSuffix = newValue;
2078 DecimalFormat::setNegativeSuffix(const UnicodeString& newValue)
2080 fNegativeSuffix = newValue;
2096 DecimalFormat::setMultiplier(int32_t newValue)
2101 fMultiplier = newValue;
2119 * @param newValue A positive rounding increment, or 0.0 to disable rounding.
2125 void DecimalFormat::setRoundingIncrement(double newValue) {
2126 if (newValue > 0.0) {
2130 fRoundingIncrement->set((int32_t)newValue);
2131 fRoundingDouble = newValue;
2348 DecimalFormat::setGroupingSize(int32_t newValue)
2350 fGroupingSize = newValue;
2364 DecimalFormat::setSecondaryGroupingSize(int32_t newValue)
2366 fGroupingSize2 = newValue;
2382 DecimalFormat::setDecimalSeparatorAlwaysShown(UBool newValue)
2384 fDecimalSeparatorAlwaysShown = newValue;
3603 void DecimalFormat::setMaximumIntegerDigits(int32_t newValue) {
3604 NumberFormat::setMaximumIntegerDigits(_min(newValue, kDoubleIntegerDigits));
3612 void DecimalFormat::setMinimumIntegerDigits(int32_t newValue) {
3613 NumberFormat::setMinimumIntegerDigits(_min(newValue, kDoubleIntegerDigits));
3621 void DecimalFormat::setMaximumFractionDigits(int32_t newValue) {
3622 NumberFormat::setMaximumFractionDigits(_min(newValue, kDoubleFractionDigits));
3630 void DecimalFormat::setMinimumFractionDigits(int32_t newValue) {
3631 NumberFormat::setMinimumFractionDigits(_min(newValue, kDoubleFractionDigits));