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

Lines Matching refs:newValue

3338 DecimalFormat::setPositivePrefix(const UnicodeString& newValue)
3340 fPositivePrefix = newValue;
3362 DecimalFormat::setNegativePrefix(const UnicodeString& newValue)
3364 fNegativePrefix = newValue;
3386 DecimalFormat::setPositiveSuffix(const UnicodeString& newValue)
3388 fPositiveSuffix = newValue;
3410 DecimalFormat::setNegativeSuffix(const UnicodeString& newValue)
3412 fNegativeSuffix = newValue;
3439 DecimalFormat::setMultiplier(int32_t newValue)
3441 // if (newValue == 0) {
3442 // throw new IllegalArgumentException("Bad multiplier: " + newValue);
3444 if (newValue == 0) {
3445 newValue = 1; // one being the benign default value for a multiplier.
3447 if (newValue == 1) {
3455 fMultiplier->set(newValue);
3482 * @param newValue A positive rounding increment, or 0.0 to disable rounding.
3488 void DecimalFormat::setRoundingIncrement(double newValue) {
3489 if (newValue > 0.0) {
3494 fRoundingIncrement->set(newValue);
3498 // These statements are executed if newValue is less than 0.0
3737 DecimalFormat::setGroupingSize(int32_t newValue)
3739 fGroupingSize = newValue;
3756 DecimalFormat::setSecondaryGroupingSize(int32_t newValue)
3758 fGroupingSize2 = newValue;
3777 DecimalFormat::setDecimalSeparatorAlwaysShown(UBool newValue)
3779 fDecimalSeparatorAlwaysShown = newValue;
5180 void DecimalFormat::setMaximumIntegerDigits(int32_t newValue) {
5181 NumberFormat::setMaximumIntegerDigits(_min(newValue, kDoubleIntegerDigits));
5192 void DecimalFormat::setMinimumIntegerDigits(int32_t newValue) {
5193 NumberFormat::setMinimumIntegerDigits(_min(newValue, kDoubleIntegerDigits));
5204 void DecimalFormat::setMaximumFractionDigits(int32_t newValue) {
5205 NumberFormat::setMaximumFractionDigits(_min(newValue, kDoubleFractionDigits));
5216 void DecimalFormat::setMinimumFractionDigits(int32_t newValue) {
5217 NumberFormat::setMinimumFractionDigits(_min(newValue, kDoubleFractionDigits));
5468 int32_t newValue,
5474 setLenient(newValue!=0);
5478 setParseIntegerOnly(newValue!=0);
5482 setGroupingUsed(newValue!=0);
5486 setDecimalSeparatorAlwaysShown(newValue!=0);
5490 setMaximumIntegerDigits(newValue);
5494 setMinimumIntegerDigits(newValue);
5498 setMinimumIntegerDigits(newValue);
5499 setMaximumIntegerDigits(newValue);
5503 setMaximumFractionDigits(newValue);
5507 setMinimumFractionDigits(newValue);
5511 setMinimumFractionDigits(newValue);
5512 setMaximumFractionDigits(newValue);
5516 setSignificantDigitsUsed(newValue!=0);
5520 setMaximumSignificantDigits(newValue);
5524 setMinimumSignificantDigits(newValue);
5528 setMultiplier(newValue);
5532 setGroupingSize(newValue);
5536 setRoundingMode((DecimalFormat::ERoundingMode)newValue);
5540 setFormatWidth(newValue);
5545 setPadPosition((DecimalFormat::EPadPosition)newValue);
5549 setSecondaryGroupingSize(newValue);
5554 setParseAllInput((UNumberFormatAttributeValue)newValue);
5561 if(!fBoolFlags.isValidValue(newValue)) {
5564 fBoolFlags.set(attr, newValue);
5569 fScale = newValue;