Home
last modified time | relevance | path

Searched refs:theCurrency (Results 1 – 11 of 11) sorted by relevance

/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/icuadapter/
DNumberFormatJDK.java207 public void setCurrency(Currency theCurrency) { in setCurrency() argument
208 if (theCurrency == null) { in setCurrency()
212 fJdkNfmt.setCurrency(java.util.Currency.getInstance(theCurrency.getCurrencyCode())); in setCurrency()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDecimalFormat.java5223 Currency theCurrency = getCurrency(); in applyPatternWithoutExpandAffix() local
5224 if (theCurrency != null) { in applyPatternWithoutExpandAffix()
5225 setRoundingIncrement(theCurrency.getRoundingIncrement(currencyUsage)); in applyPatternWithoutExpandAffix()
5226 int d = theCurrency.getDefaultFractionDigits(currencyUsage); in applyPatternWithoutExpandAffix()
5373 public void setCurrency(Currency theCurrency) { in setCurrency() argument
5379 super.setCurrency(theCurrency); in setCurrency()
5380 if (theCurrency != null) { in setCurrency()
5381 String s = theCurrency.getName(symbols.getULocale(), Currency.SYMBOL_NAME, null); in setCurrency()
5382 symbols.setCurrency(theCurrency); in setCurrency()
5387 if (theCurrency != null) { in setCurrency()
[all …]
DNumberFormat.java1250 public void setCurrency(Currency theCurrency) { in setCurrency() argument
1251 currency = theCurrency; in setCurrency()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDecimalFormat.java5152 Currency theCurrency = getCurrency(); in applyPatternWithoutExpandAffix() local
5153 if (theCurrency != null) { in applyPatternWithoutExpandAffix()
5154 setRoundingIncrement(theCurrency.getRoundingIncrement(currencyUsage)); in applyPatternWithoutExpandAffix()
5155 int d = theCurrency.getDefaultFractionDigits(currencyUsage); in applyPatternWithoutExpandAffix()
5293 public void setCurrency(Currency theCurrency) { in setCurrency() argument
5299 super.setCurrency(theCurrency); in setCurrency()
5300 if (theCurrency != null) { in setCurrency()
5301 String s = theCurrency.getName(symbols.getULocale(), Currency.SYMBOL_NAME, null); in setCurrency()
5302 symbols.setCurrency(theCurrency); in setCurrency()
5307 if (theCurrency != null) { in setCurrency()
[all …]
DNumberFormat.java1163 public void setCurrency(Currency theCurrency) { in setCurrency() argument
1164 currency = theCurrency; in setCurrency()
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
DDecimalFormat.java1674 public void setCurrency(Currency theCurrency) { in setCurrency() argument
1675 super.setCurrency(theCurrency); in setCurrency()
DNumberFormat.java1067 public void setCurrency(Currency theCurrency) { in setCurrency() argument
1068 numberFormat.setCurrency(theCurrency.currency); in setCurrency()
/external/icu/icu4c/source/i18n/unicode/
Ddecimfmt.h1964 virtual void setCurrency(const UChar* theCurrency, UErrorCode& ec);
1971 virtual void setCurrency(const UChar* theCurrency);
Dnumfmt.h934 virtual void setCurrency(const UChar* theCurrency, UErrorCode& ec);
/external/icu/icu4c/source/i18n/
Dnumfmt.cpp1179 void NumberFormat::setCurrency(const UChar* theCurrency, UErrorCode& ec) { in setCurrency() argument
1183 if (theCurrency) { in setCurrency()
1184 u_strncpy(fCurrency, theCurrency, 3); in setCurrency()
Ddecimfmt.cpp2955 void DecimalFormat::setCurrency(const UChar* theCurrency, UErrorCode& ec) { in setCurrency() argument
2957 NumberFormat::setCurrency(theCurrency, ec); in setCurrency()
2970 void DecimalFormat::setCurrency(const UChar* theCurrency) { in setCurrency() argument
2972 setCurrency(theCurrency, ec); in setCurrency()