/libcore/luni/src/main/java/java/util/ |
Currency.java | 25 * A currency corresponding to an <a href="http://en.wikipedia.org/wiki/ISO_4217">ISO 4217</a> 26 * currency code such as "EUR" or "USD". 28 public final class Currency implements Serializable { 31 private static final HashMap<String, Currency> codesToCurrencies = new HashMap<String, Currency>(); 32 private static final HashMap<Locale, Currency> localesToCurrencies = new HashMap<Locale, Currency>(); 36 private Currency(String currencyCode) { 40 throw new IllegalArgumentException("Unsupported ISO 4217 currency code: " + 46 * Returns the {@code Currency} instance for the given ISO 4217 currency code 52 Currency currency = codesToCurrencies.get(currencyCode); local 68 Currency currency = localesToCurrencies.get(locale); local [all...] |
/libcore/luni/src/main/java/java/text/ |
DecimalFormatSymbols.java | 25 import java.util.Currency; 56 private transient Currency currency; field in class:DecimalFormatSymbols 99 currency = Currency.getInstance(locale); 100 currencySymbol = currency.getSymbol(locale); 101 intlCurrencySymbol = currency.getCurrencyCode(); 103 currency = Currency.getInstance("XXX"); 174 return currency.equals(obj.currency) & [all...] |
/external/icu4c/samples/numfmt/ |
main.cpp | 85 // currency formatting ----------------------------------------------------- *** 88 * Set a currency on a NumberFormat with pre-ICU 2.6 APIs. 92 * @param nf The NumberFormat on which to set the currency; takes effect on 93 * currency-formatting NumberFormat instances. 97 * while the currency symbol and number of decimals are set for 98 * the currency. 99 * @param currency The 3-letter ISO 4217 currency code, NUL-terminated. 103 setNumberFormatCurrency_2_4(NumberFormat &nf, const char *currency, UErrorCode &errorCode) { 108 if(currency==NULL || strlen(currency)!=3) 129 const char *currency; member in struct:__anon18950 [all...] |
/external/icu4c/i18n/unicode/ |
ucurr.h | 15 * \brief C API: Encapsulates information about a currency. 21 * The ucurr API encapsulates information about a currency, as defined by 22 * ISO 4217. A currency is represented by a 3-character string 24 * necessary the proper display of a currency: 38 * Finds a currency code for the given locale. 39 * @param locale the locale for which to retrieve a currency code. 40 * Currency can be specified by the "currency" keyword 41 * in which case it overrides the default currency code 47 * @return length of the currency string. It should always be 3. If 0 [all...] |
unum.h | 38 * There are different number format styles like decimal, currency, 101 * to get the currency number format for that country. Use UNUM_PERCENT 122 * locale like the currency symbol, the grouping seperator , monetary seperator 147 * Currency format with a currency symbol, e.g., "$1.00". 187 * Currency format with an ISO currency code, e.g., "USD1.00". 192 * Currency format with a pluralized currency name, 268 * Constants for specifying currency spacin [all...] |
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
ucurr.h | 15 * \brief C API: Encapsulates information about a currency. 21 * The ucurr API encapsulates information about a currency, as defined by 22 * ISO 4217. A currency is represented by a 3-character string 24 * necessary the proper display of a currency: 38 * Finds a currency code for the given locale. 39 * @param locale the locale for which to retrieve a currency code. 40 * Currency can be specified by the "currency" keyword 41 * in which case it overrides the default currency code 47 * @return length of the currency string. It should always be 3. If 0 [all...] |
decimfmt.h | 57 * ("1.23E4"), percentages ("12%"), and currency amounts ("$123", "USD123", 77 * // Print out a number with the localized number, currency and percent 114 * <strong>// Print out a number using the localized number, currency, 115 * // percent, scientific, integer, iso currency, and plural currency 162 * their special status. Two exceptions are the currency sign and quote, which 237 * <td>Currency sign, replaced by currency symbol. If 238 * doubled, replaced by international currency symbol. 239 * If tripled, replaced by currency plural names, for example [all...] |
unum.h | 38 * There are different number format styles like decimal, currency, 101 * to get the currency number format for that country. Use UNUM_PERCENT 122 * locale like the currency symbol, the grouping seperator , monetary seperator 143 /** Currency format */ 411 * Format a double currency amount using a UNumberFormat. 415 * @param currency the 3-letter null-terminated ISO 4217 currency code 434 UChar* currency, 548 * Parse a string into a double and a currency using a UNumberFormat. 557 * @param currency a pointer to the buffer to receive the parsed null [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
currcoll.cpp | 45 // All the currency symbols, in collation order 46 static const UChar currency[][2] = local 48 { 0x00A4, 0x0000}, /*00A4; L; [14 36, 03, 03] # [082B.0020.0002] # CURRENCY SIGN*/ 60 { 0x0E3F, 0x0000}, /*0E3F; L; [14 44, 03, 03] # [0832.0020.0002] # THAI CURRENCY SYMBOL BAHT*/ 61 { 0x17DB, 0x0000}, /*17DB; L; [14 46, 03, 03] # [0833.0020.0002] # KHMER CURRENCY SYMBOL RIEL*/ 62 { 0x20A0, 0x0000}, /*20A0; L; [14 48, 03, 03] # [0834.0020.0002] # EURO-CURRENCY SIGN*/ 92 // Compare each currency symbol against all the 93 // currency symbols, including itself 94 for (i = 0; i < ARRAY_LENGTH(currency); i += 1) 96 for (j = 0; j < ARRAY_LENGTH(currency); j += 1 [all...] |
winnmtst.cpp | 132 static UnicodeString &getWindowsFormat(int32_t lcid, UBool currency, UnicodeString &appendTo, const wchar_t *fmt, ...) 186 if (currency) { 229 static void testLocale(const char *localeID, int32_t lcid, NumberFormat *wnf, UBool currency, TestLog *log) 238 getWindowsFormat(lcid, currency, wdBuffer, L"%.16f", d); 240 getWindowsFormat(lcid, currency, w3Buffer, L"%I32d", i32); 242 getWindowsFormat(lcid, currency, w6Buffer, L"%I64d", i64);
|
/external/icu4c/test/intltest/ |
currcoll.cpp | 45 // All the currency symbols, in collation order 46 static const UChar currency[][2] = local 48 { 0x00A4, 0x0000}, /*00A4; L; [14 36, 03, 03] # [082B.0020.0002] # CURRENCY SIGN*/ 60 { 0x0E3F, 0x0000}, /*0E3F; L; [14 44, 03, 03] # [0832.0020.0002] # THAI CURRENCY SYMBOL BAHT*/ 61 { 0x17DB, 0x0000}, /*17DB; L; [14 46, 03, 03] # [0833.0020.0002] # KHMER CURRENCY SYMBOL RIEL*/ 62 { 0x20A0, 0x0000}, /*20A0; L; [14 48, 03, 03] # [0834.0020.0002] # EURO-CURRENCY SIGN*/ 92 // Compare each currency symbol against all the 93 // currency symbols, including itself 94 for (i = 0; i < ARRAY_LENGTH(currency); i += 1) 96 for (j = 0; j < ARRAY_LENGTH(currency); j += 1 [all...] |
winnmtst.cpp | 132 static UnicodeString &getWindowsFormat(int32_t lcid, UBool currency, UnicodeString &appendTo, const wchar_t *fmt, ...) 186 if (currency) { 229 static void testLocale(const char *localeID, int32_t lcid, NumberFormat *wnf, UBool currency, TestLog *log) 238 getWindowsFormat(lcid, currency, wdBuffer, L"%.16f", d); 240 getWindowsFormat(lcid, currency, w3Buffer, L"%I32d", i32); 242 getWindowsFormat(lcid, currency, w6Buffer, L"%I64d", i64);
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
ccurrtst.c | 42 /* All the currency symbols, in UCA order*/ 43 static const UChar currency[][2] = local 45 { 0x00A4, 0x0000}, /*00A4; L; [14 36, 03, 03] # [082B.0020.0002] # CURRENCY SIGN*/ 57 { 0x0E3F, 0x0000}, /*0E3F; L; [14 44, 03, 03] # [0832.0020.0002] # THAI CURRENCY SYMBOL BAHT*/ 58 { 0x17DB, 0x0000}, /*17DB; L; [14 46, 03, 03] # [0833.0020.0002] # KHMER CURRENCY SYMBOL RIEL*/ 59 { 0x20A0, 0x0000}, /*20A0; L; [14 48, 03, 03] # [0834.0020.0002] # EURO-CURRENCY SIGN*/ 78 /* All the currency symbols, in collation order*/ 79 static const UChar currency[][2] = 81 { 0x00a4, 0x0000}, /* generic currency*/ 110 log_verbose("Testing currency of all locales\n") [all...] |
/external/icu4c/test/cintltst/ |
ccurrtst.c | 42 /* All the currency symbols, in UCA order*/ 43 static const UChar currency[][2] = local 45 { 0x00A4, 0x0000}, /*00A4; L; [14 36, 03, 03] # [082B.0020.0002] # CURRENCY SIGN*/ 57 { 0x0E3F, 0x0000}, /*0E3F; L; [14 44, 03, 03] # [0832.0020.0002] # THAI CURRENCY SYMBOL BAHT*/ 58 { 0x17DB, 0x0000}, /*17DB; L; [14 46, 03, 03] # [0833.0020.0002] # KHMER CURRENCY SYMBOL RIEL*/ 59 { 0x20A0, 0x0000}, /*20A0; L; [14 48, 03, 03] # [0834.0020.0002] # EURO-CURRENCY SIGN*/ 78 /* All the currency symbols, in collation order*/ 79 static const UChar currency[][2] = 81 { 0x00a4, 0x0000}, /* generic currency*/ 110 log_verbose("Testing currency of all locales\n") [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
winnmfmt.cpp | 43 CURRENCYFMTW currency; member in union:FormatInfo 139 Win32NumberFormat::Win32NumberFormat(const Locale &locale, UBool currency, UErrorCode &status) 140 : NumberFormat(), fCurrency(currency), fFractionDigitsSet(FALSE), fFormatInfo(NULL) 148 getCurrencyFormat(&fFormatInfo->currency, fLCID); 168 freeCurrencyFormat(&fFormatInfo->currency); 186 freeCurrencyFormat(&fFormatInfo->currency); 187 getCurrencyFormat(&fFormatInfo->currency, fLCID); 295 formatInfo.currency.NumDigits = (UINT) numDigits; 299 formatInfo.currency.Grouping = 0; 302 result = GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, buffer, STACK_BUFFER_SIZE) [all...] |
dcfmtsym.cpp | 15 * 08/26/97 aliu Added currency/intl currency symbol support. 153 NULL, /* currency symbol - We don't really try to load this directly from CLDR until we know the currency */ 154 NULL, /* intl currency symbol - We don't really try to load this directly from CLDR until we know the currency */ 283 // Obtain currency data from the currency API. This is strictly 285 // for currency data anymore. 305 //load the currency dat 317 UResourceBundle *currency = ures_getByKeyWithFallback(currencyResource, "Currencies", NULL, &localStatus); local [all...] |
winnmfmt.h | 39 Win32NumberFormat(const Locale &locale, UBool currency, UErrorCode &status);
|
ucurr.cpp | 38 // Default currency meta data of last resort. We try to use the 99 * Unfortunately, we have to convert the UChar* currency code to char* 103 myUCharsToChars(char* resultOfLen4, const UChar* currency) { 104 u_UCharsToChars(currency, resultOfLen4, ISO_COUNTRY_CODE_LENGTH); 110 * Internal function to look up currency data. Result is an array of 116 _findMetaData(const UChar* currency, UErrorCode& ec) { 118 if (currency == 0 || *currency == 0) { 137 // Look up our currency, or if that's not available, then DEFAULT 140 UResourceBundle* rb = ures_getByKey(currencyMeta, myUCharsToChars(buf, currency), NULL, &ec2) 1446 const char *currency; member in struct:CurrencyList [all...] |
/external/icu4c/i18n/ |
winnmfmt.cpp | 43 CURRENCYFMTW currency; member in union:FormatInfo 139 Win32NumberFormat::Win32NumberFormat(const Locale &locale, UBool currency, UErrorCode &status) 140 : NumberFormat(), fCurrency(currency), fFractionDigitsSet(FALSE), fFormatInfo(NULL) 148 getCurrencyFormat(&fFormatInfo->currency, fLCID); 168 freeCurrencyFormat(&fFormatInfo->currency); 186 freeCurrencyFormat(&fFormatInfo->currency); 187 getCurrencyFormat(&fFormatInfo->currency, fLCID); 295 formatInfo.currency.NumDigits = (UINT) numDigits; 299 formatInfo.currency.Grouping = 0; 302 result = GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, buffer, STACK_BUFFER_SIZE) [all...] |
dcfmtsym.cpp | 15 * 08/26/97 aliu Added currency/intl currency symbol support. 165 NULL, /* currency symbol - We don't really try to load this directly from CLDR until we know the currency */ 166 NULL, /* intl currency symbol - We don't really try to load this directly from CLDR until we know the currency */ 294 // Obtain currency data from the currency API. This is strictly 296 // for currency data anymore. 316 //load the currency dat 328 UResourceBundle *currency = ures_getByKeyWithFallback(currencyResource, "Currencies", NULL, &localStatus); local [all...] |
winnmfmt.h | 39 Win32NumberFormat(const Locale &locale, UBool currency, UErrorCode &status);
|
ucurr.cpp | 44 // Default currency meta data of last resort. We try to use the 135 * Unfortunately, we have to convert the UChar* currency code to char* 139 myUCharsToChars(char* resultOfLen4, const UChar* currency) { 140 u_UCharsToChars(currency, resultOfLen4, ISO_CURRENCY_CODE_LENGTH); 146 * Internal function to look up currency data. Result is an array of 152 _findMetaData(const UChar* currency, UErrorCode& ec) { 154 if (currency == 0 || *currency == 0) { 173 // Look up our currency, or if that's not available, then DEFAULT 176 UResourceBundle* rb = ures_getByKey(currencyMeta, myUCharsToChars(buf, currency), NULL, &ec2) 1485 const char *currency; member in struct:CurrencyList [all...] |
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
DecimalFormatSymbolsTest.java | 29 import java.util.Currency; 248 Currency currency = Currency.getInstance("USD"); local 249 assertEquals("Returned incorrect currency", 250 dfsUS.getCurrency(), currency); 252 Currency currK = Currency.getInstance("KRW"); 253 Currency currX = Currency.getInstance("XXX") 425 Currency currency = Currency.getInstance("JPY"); local 501 Currency currency = Currency.getInstance("JPY"); local 588 Currency currency = symbols.getCurrency(); local [all...] |
/external/chromium_org/v8/test/intl/number-format/ |
property-override.js | 46 // they were not requested - currency, currencyDisplay, 49 undefined, {style: 'currency', currency: 'USD', currencyDisplay: 'name', 60 'currency', 'currencyDisplay', 'useGrouping', 75 {currency: 'USD', currencyDisplay: 'name',
|
/external/chromium_org/v8/src/ |
i18n.cc | 279 icu::UnicodeString currency; local 281 if (style == UNICODE_STRING_SIMPLE("currency")) { 283 ExtractStringSetting(isolate, options, "currency", ¤cy); 330 if (!currency.isEmpty()) { 331 number_format->setCurrency(currency.getBuffer(), status); 393 // Set resolved currency code in options.currency if not empty. 394 icu::UnicodeString currency(number_format->getCurrency()); 395 if (!currency.isEmpty()) [all...] |