/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/javaspi/text/ |
NumberFormatProviderICU.java | 22 private final static int CURRENCY = 2; 27 return getInstance(CURRENCY, locale); 60 case CURRENCY:
|
/libcore/luni/src/test/java/libcore/java/text/ |
OldNumberFormatFieldTest.java | 50 NumberFormat.Field nfield = NumberFormat.Field.CURRENCY;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
Support_DecimalFormat.java | 45 t_FormatWithField(0, format, number, text, NumberFormat.Field.CURRENCY, 0, 1); 72 t_FormatWithField(19, format, number, text, NumberFormat.Field.CURRENCY, 0, 0); 76 // test currency instance with TR Locale 82 t_FormatWithField(23, format, number, text, NumberFormat.Field.CURRENCY, 0, 1); 126 // test currency instance with US Locale 129 // test negative currency instance with US Locale 132 // test currency instance with TR Locale 135 // test negative currency instance with TR Locale 157 v.add(new FieldContainer(0, 1, NumberFormat.Field.CURRENCY)); 167 v.add(new FieldContainer(1, 2, NumberFormat.Field.CURRENCY)); [all...] |
/libcore/support/src/test/java/tests/support/ |
Support_DecimalFormat.java | 47 t_FormatWithField(0, format, number, text, NumberFormat.Field.CURRENCY, 94 NumberFormat.Field.CURRENCY, 0, 0); 100 // test currency instance with TR Locale 106 NumberFormat.Field.CURRENCY, 0, 4); 151 // test currency instance with US Locale 154 // test negative currency instance with US Locale 175 // test currency instance with TR Locale 178 // test negative currency instance with TR Locale 198 v.add(new FieldContainer(0, 4, NumberFormat.Field.CURRENCY)); 207 v.add(new FieldContainer(0, 4, NumberFormat.Field.CURRENCY)); [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/ |
Symbols.java | 37 builder.replaceKeyOfLabel(CURRENCY, customizer.getCurrencyKey()); 60 // Variations of the "currency" key on the 2nd row. 61 public static final String CURRENCY = "CURRENCY"; 147 key("@"), key("#"), key(CURRENCY),
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/ |
NumberFormat.java | 19 import com.ibm.icu.util.Currency; 72 * currency number format. And use <code>getPercentInstance</code> to get a 84 * getInstance(...CURRENCYSTYLE) to get the currency number format, 85 * in which the currency is represented by its symbol, for example, "$3.00". 86 * getInstance(...ISOCURRENCYSTYLE) to get the currency number format, 87 * in which the currency is represented by its ISO code, for example "USD3.00". 88 * getInstance(...PLURALCURRENCYSTYLE) to get the currency number format, 89 * in which the currency is represented by its full name in plural format, 182 * {@icu} Constant to specify currency style of format which uses currency symbo [all...] |
DecimalFormat.java | 21 import com.ibm.icu.util.Currency; 32 * numbers ("123.4"), scientific notation ("1.23E4"), percentages ("12%"), and currency 51 * Print out a number using the localized number, currency, and percent 86 * Print out a number using the localized number, currency, percent, 87 * scientific, integer, iso currency, and plural currency format for each locale. 132 * Two exceptions are the currency sign and quote, which are not localized. 208 * <td>Currency sign, replaced by currency symbol. If 209 * doubled, replaced by international currency symbol [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
NumberFormat.java | 26 import android.icu.util.Currency; 27 import android.icu.util.Currency.CurrencyUsage; 82 * currency number format. And use <code>getPercentInstance</code> to get a 95 * getInstance(...CURRENCYSTYLE) to get the currency number format, 96 * in which the currency is represented by its symbol, for example, "$3.00". 97 * getInstance(...ISOCURRENCYSTYLE) to get the currency number format, 98 * in which the currency is represented by its ISO code, for example "USD3.00". 99 * getInstance(...PLURALCURRENCYSTYLE) to get the currency number format, 100 * in which the currency is represented by its full name in plural format, 176 * <strong>[icu]</strong> Constant to specify general currency style of format. Defaults t 1660 private Currency currency; field in class:NumberFormat [all...] |
RuleBasedCollator.java | 701 * Collator.ReorderCodes.SYMBOL, Collator.ReorderCodes.CURRENCY; 712 } else if(Collator.ReorderCodes.FIRST <= group && group <= Collator.ReorderCodes.CURRENCY) { [all...] |
Collator.java | 268 * Characters with the currency property. 269 * This is equivalent to the rule value "currency". 271 public final static int CURRENCY = 0x1003; 388 * are space, punctuation, symbol, currency, and digit. These special groups are represented with 624 getIntValue(keyword, s, "space", "punct", "symbol", "currency", "digit"); [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
NumberFormat.java | 25 import com.ibm.icu.util.Currency; 26 import com.ibm.icu.util.Currency.CurrencyUsage; 81 * currency number format. And use <code>getPercentInstance</code> to get a 94 * getInstance(...CURRENCYSTYLE) to get the currency number format, 95 * in which the currency is represented by its symbol, for example, "$3.00". 96 * getInstance(...ISOCURRENCYSTYLE) to get the currency number format, 97 * in which the currency is represented by its ISO code, for example "USD3.00". 98 * getInstance(...PLURALCURRENCYSTYLE) to get the currency number format, 99 * in which the currency is represented by its full name in plural format, 177 * {@icu} Constant to specify general currency style of format. Defaults t 1751 private Currency currency; field in class:NumberFormat [all...] |
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/ |
DecimalFormatICU.java | 16 import java.util.Currency; 132 public Currency getCurrency() { 133 com.ibm.icu.util.Currency icuCurrency = fIcuDecfmt.getCurrency(); 137 return Currency.getInstance(icuCurrency.getCurrencyCode()); 249 public void setCurrency(Currency currency) { 250 if (currency == null) { 253 fIcuDecfmt.setCurrency(com.ibm.icu.util.Currency.getInstance(currency.getCurrencyCode())); 265 Currency currency = newSymbols.getCurrency() local [all...] |
/libcore/ojluni/src/main/java/java/text/ |
DecimalFormat.java | 49 import java.util.Currency; 66 * currency amounts ($123). All of these can be localized. 171 * their special status. Two exceptions are the currency sign and quote, which 232 * <td>Currency sign, replaced by currency symbol. If 233 * doubled, replaced by international currency symbol. 340 * <strong>// Print out a number using the localized number, integer, currency, 494 } else if (fp.getFieldAttribute() == Field.CURRENCY) { 495 attribute = android.icu.text.NumberFormat.Field.CURRENCY; 522 if (icuAttribute.getName().equals(Field.CURRENCY.getName())) 1405 Currency currency = symbols.getCurrency(); local [all...] |
NumberFormat.java | 49 import java.util.Currency; 109 * currency number format. And use <code>getPercentInstance</code> to get a 444 * Returns a currency format for the current default locale. 451 * Returns a currency format for the specified locale. 656 * Gets the currency used by this number format when formatting 657 * currency values. The initial value is derived in a locale dependent 659 * currency could be determined and no currency has been set using 660 * {@link #setCurrency(java.util.Currency) setCurrency}. 665 * @return the currency used by this number format, or <code>null</code [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
IntlTestDecimalFormatAPIC.java | 331 // test currency instance with US Locale 335 // test negative currency instance with US Locale 361 // v.add(new FieldContainer(4, 6, NumberFormat.Field.CURRENCY)); 369 // v.add(new FieldContainer(5, 7, NumberFormat.Field.CURRENCY)); 375 v.add(new FieldContainer(0, 1, NumberFormat.Field.CURRENCY)); 386 v.add(new FieldContainer(1, 2, NumberFormat.Field.CURRENCY));
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
IntlTestDecimalFormatAPIC.java | 327 // test currency instance with US Locale 331 // test negative currency instance with US Locale 357 // v.add(new FieldContainer(4, 6, NumberFormat.Field.CURRENCY)); 365 // v.add(new FieldContainer(5, 7, NumberFormat.Field.CURRENCY)); 371 v.add(new FieldContainer(0, 1, NumberFormat.Field.CURRENCY)); 382 v.add(new FieldContainer(1, 2, NumberFormat.Field.CURRENCY));
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
RuleBasedCollator.java | 722 * Collator.ReorderCodes.SYMBOL, Collator.ReorderCodes.CURRENCY; 734 } else if(Collator.ReorderCodes.FIRST <= group && group <= Collator.ReorderCodes.CURRENCY) { [all...] |
Collator.java | 284 * Characters with the currency property. 285 * This is equivalent to the rule value "currency". 288 public final static int CURRENCY = 0x1003; 408 * are space, punctuation, symbol, currency, and digit. These special groups are represented with 654 getIntValue(keyword, s, "space", "punct", "symbol", "currency", "digit"); [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
CollationFastLatinBuilder.java | 675 // space, punct, symbol, currency (not digit) 677 Collator.ReorderCodes.CURRENCY - Collator.ReorderCodes.FIRST + 1;
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/ |
CollationMiscTest.java | [all...] |
CollationAPITest.java | [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
CollationFastLatinBuilder.java | 674 // space, punct, symbol, currency (not digit) 676 Collator.ReorderCodes.CURRENCY - Collator.ReorderCodes.FIRST + 1;
|
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
CollationMiscTest.java | [all...] |
CollationAPITest.java | [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
tapi3.h | 289 virtual HRESULT WINAPI get_OverallCallRate(CURRENCY *pcyCallrate) = 0; 317 HRESULT (WINAPI *get_OverallCallRate)(ITAgent *This,CURRENCY *pcyCallrate); 375 HRESULT WINAPI ITAgent_get_OverallCallRate_Proxy(ITAgent *This,CURRENCY *pcyCallrate); 413 virtual HRESULT WINAPI get_ACDCallRate(CURRENCY *pcyCallrate) = 0; 441 HRESULT (WINAPI *get_ACDCallRate)(ITAgentSession *This,CURRENCY *pcyCallrate); 504 HRESULT WINAPI ITAgentSession_get_ACDCallRate_Proxy(ITAgentSession *This,CURRENCY *pcyCallrate); [all...] |