Searched defs:theCurrency (Results 1 - 9 of 9) sorted by relevance

/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
H A DDecimalFormat.java1671 * @param theCurrency new currency object to use. Must not be null.
1674 public void setCurrency(Currency theCurrency) { argument
1675 super.setCurrency(theCurrency);
H A DNumberFormat.java1063 * @param theCurrency new currency object to use. May be null for
1067 public void setCurrency(Currency theCurrency) { argument
1068 numberFormat.setCurrency(theCurrency.currency);
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/icuadapter/
H A DNumberFormatJDK.java207 public void setCurrency(Currency theCurrency) { argument
208 if (theCurrency == null) {
212 fJdkNfmt.setCurrency(java.util.Currency.getInstance(theCurrency.getCurrencyCode()));
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DNumberFormat.java1160 * @param theCurrency new currency object to use. May be null for
1163 public void setCurrency(Currency theCurrency) { argument
1164 currency = theCurrency;
H A DDecimalFormat.java5152 Currency theCurrency = getCurrency();
5153 if (theCurrency != null) {
5154 setRoundingIncrement(theCurrency.getRoundingIncrement(currencyUsage));
5155 int d = theCurrency.getDefaultFractionDigits(currencyUsage);
5290 * @param theCurrency new currency object to use. Must not be null.
5293 public void setCurrency(Currency theCurrency) { argument
5299 super.setCurrency(theCurrency);
5300 if (theCurrency != null) {
5301 String s = theCurrency.getName(symbols.getULocale(), Currency.SYMBOL_NAME, null);
5302 symbols.setCurrency(theCurrency);
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DNumberFormat.java1246 * @param theCurrency new currency object to use. May be null for
1250 public void setCurrency(Currency theCurrency) { argument
1251 currency = theCurrency;
H A DDecimalFormat.java5223 Currency theCurrency = getCurrency();
5224 if (theCurrency != null) {
5225 setRoundingIncrement(theCurrency.getRoundingIncrement(currencyUsage));
5226 int d = theCurrency.getDefaultFractionDigits(currencyUsage);
5369 * @param theCurrency new currency object to use. Must not be null.
5373 public void setCurrency(Currency theCurrency) { argument
5379 super.setCurrency(theCurrency);
5380 if (theCurrency != null) {
5381 String s = theCurrency.getName(symbols.getULocale(), Currency.SYMBOL_NAME, null);
5382 symbols.setCurrency(theCurrency);
[all...]
/external/icu/icu4c/source/i18n/
H A Dnumfmt.cpp1179 void NumberFormat::setCurrency(const UChar* theCurrency, UErrorCode& ec) { argument
1183 if (theCurrency) {
1184 u_strncpy(fCurrency, theCurrency, 3);
H A Ddecimfmt.cpp2955 void DecimalFormat::setCurrency(const UChar* theCurrency, UErrorCode& ec) { argument
2957 NumberFormat::setCurrency(theCurrency, ec);
2970 void DecimalFormat::setCurrency(const UChar* theCurrency) { argument
2972 setCurrency(theCurrency, ec);

Completed in 514 milliseconds