Home
last modified time | relevance | path

Searched refs:zeroDigit (Results 1 – 5 of 5) sorted by relevance

/libcore/luni/src/main/native/
Dlibcore_icu_NativeDecimalFormat.cpp55 jstring percent0, jchar perMill, jchar zeroDigit) { in makeDecimalFormatSymbols() argument
82 result->setSymbol(DecimalFormatSymbols::kZeroDigitSymbol, UnicodeString(zeroDigit + 0)); in makeDecimalFormatSymbols()
83 result->setSymbol(DecimalFormatSymbols::kOneDigitSymbol, UnicodeString(zeroDigit + 1)); in makeDecimalFormatSymbols()
84 result->setSymbol(DecimalFormatSymbols::kTwoDigitSymbol, UnicodeString(zeroDigit + 2)); in makeDecimalFormatSymbols()
85 result->setSymbol(DecimalFormatSymbols::kThreeDigitSymbol, UnicodeString(zeroDigit + 3)); in makeDecimalFormatSymbols()
86 result->setSymbol(DecimalFormatSymbols::kFourDigitSymbol, UnicodeString(zeroDigit + 4)); in makeDecimalFormatSymbols()
87 result->setSymbol(DecimalFormatSymbols::kFiveDigitSymbol, UnicodeString(zeroDigit + 5)); in makeDecimalFormatSymbols()
88 result->setSymbol(DecimalFormatSymbols::kSixDigitSymbol, UnicodeString(zeroDigit + 6)); in makeDecimalFormatSymbols()
89 result->setSymbol(DecimalFormatSymbols::kSevenDigitSymbol, UnicodeString(zeroDigit + 7)); in makeDecimalFormatSymbols()
90 result->setSymbol(DecimalFormatSymbols::kEightDigitSymbol, UnicodeString(zeroDigit + 8)); in makeDecimalFormatSymbols()
[all …]
/libcore/luni/src/main/java/java/text/
DDecimalFormatSymbols.java45 private char zeroDigit; field in DecimalFormatSymbols
90 this.zeroDigit = localeData.zeroDigit; in DecimalFormatSymbols()
193 zeroDigit == obj.zeroDigit; in equals()
213 ",zeroDigit=" + zeroDigit + in toString()
370 return zeroDigit; in getZeroDigit()
384 result = 31*result + zeroDigit; in hashCode()
572 this.zeroDigit = value; in setZeroDigit()
/libcore/luni/src/main/java/java/util/
DFormatter.java1425 boolean needLocalizedDigits = (localeData.zeroDigit != '0'); in transform()
1498 int offsetToLocalizedDigits = localeData.zeroDigit - '0'; in localizeDigits()
1636 paddingChar = localeData.zeroDigit; in padding()
1707 if (localeData.zeroDigit != '0') { in transformFromInteger()
1979 char zeroDigit = localeData.zeroDigit; in appendLocalized() local
1980 if (zeroDigit == '0') { in appendLocalized()
1989 if (zeroDigit == '0') { in appendLocalized()
1993 result.insert(paddingIndex, zeroDigit); in appendLocalized()
/libcore/luni/src/main/java/libcore/icu/
DNativeDecimalFormat.java176 data.percent, data.perMill, data.zeroDigit); in NativeDecimalFormat()
280 localeData.percent, localeData.perMill, localeData.zeroDigit); in setDecimalFormatSymbols()
630 char perMill, char zeroDigit); in open() argument
636 char perMill, char zeroDigit); in setDecimalFormatSymbols() argument
DLocaleData.java101 public char zeroDigit; field in LocaleData