HomeSort by relevance Sort by last modified time
    Searched refs:isoCode (Results 1 - 25 of 27) sorted by null

1 2

  /external/icu/icu4c/source/i18n/
currunit.cpp 21 *isoCode = 0;
24 u_strcpy(isoCode, _isoCode);
26 u_UCharsToChars(isoCode, simpleIsoCode, 4);
36 u_strcpy(isoCode, other.isoCode);
44 u_strcpy(isoCode, other.isoCode);
curramt.cpp 20 CurrencyAmount::CurrencyAmount(const Formattable& amount, const UChar* isoCode,
22 Measure(amount, new CurrencyUnit(isoCode, ec), ec) {
25 CurrencyAmount::CurrencyAmount(double amount, const UChar* isoCode,
27 Measure(Formattable(amount), new CurrencyUnit(isoCode, ec), ec) {
ucurr.cpp 41 const UChar *isoCode; /* const because it's a reference to a resource bundle string. */
497 ucurr_register(const UChar* isoCode, const char* locale, UErrorCode *status)
502 return CReg::reg(isoCode, id, status);
852 const char* IsoCode; // key
    [all...]
measfmt.cpp 892 UChar isoCode[4];
893 u_charsToUChars(amtUnit.getSubtype(), isoCode, 4);
895 new CurrencyAmount(amtNumber, isoCode, status),
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
currunit.h 39 * @param isoCode the 3-letter ISO 4217 currency code; must not be
41 * @param ec input-output error code. If the isoCode is invalid,
45 CurrencyUnit(const UChar* isoCode, UErrorCode &ec);
100 UChar isoCode[4];
104 return isoCode;
curramt.h 41 * @param isoCode the 3-letter ISO 4217 currency code; must not be
43 * @param ec input-output error code. If the amount or the isoCode
47 CurrencyAmount(const Formattable& amount, const UChar* isoCode,
54 * @param isoCode the 3-letter ISO 4217 currency code; must not be
56 * @param ec input-output error code. If the isoCode is invalid,
60 CurrencyAmount(double amount, const UChar* isoCode,
ucurr.h 116 * @param isoCode the three-letter ISO 4217 currency code
124 ucurr_register(const UChar* isoCode,
312 * @param isoCode
331 ucurr_isAvailable(const UChar* isoCode,
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUCurrencyDisplayInfoProvider.java 69 public String getName(String isoCode) {
70 return getName(isoCode, false);
74 public String getSymbol(String isoCode) {
75 return getName(isoCode, true);
78 private String getName(String isoCode, boolean symbolName) {
80 ICUResourceBundle result = currencies.findWithFallback(isoCode);
93 return fallback ? isoCode : null;
97 public String getPluralName(String isoCode, String pluralKey ) {
100 ICUResourceBundle pluralsBundle = plurals.findWithFallback(isoCode);
109 return getName(isoCode);
    [all...]
CurrencyData.java 29 public abstract CurrencyFormatInfo getFormatInfo(String isoCode);
106 public String getName(String isoCode) {
107 return fallback ? isoCode : null;
111 public String getPluralName(String isoCode, String pluralType) {
112 return fallback ? isoCode : null;
116 public String getSymbol(String isoCode) {
117 return fallback ? isoCode : null;
144 public CurrencyFormatInfo getFormatInfo(String isoCode) {
ICUCurrencyMetaInfo.java 51 public CurrencyDigits currencyDigits(String isoCode) {
52 return currencyDigits(isoCode, CurrencyUsage.STANDARD);
56 public CurrencyDigits currencyDigits(String isoCode, CurrencyUsage currencyPurpose) {
57 ICUResourceBundle b = digitInfo.findWithFallback(isoCode);
  /external/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/
ICUCurrencyDisplayInfoProvider.java 65 public String getName(String isoCode) {
66 return getName(isoCode, false);
70 public String getSymbol(String isoCode) {
71 return getName(isoCode, true);
74 private String getName(String isoCode, boolean symbolName) {
76 ICUResourceBundle result = currencies.findWithFallback(isoCode);
89 return fallback ? isoCode : null;
93 public String getPluralName(String isoCode, String pluralKey ) {
96 ICUResourceBundle pluralsBundle = plurals.findWithFallback(isoCode);
105 return getName(isoCode);
    [all...]
ICUCurrencyMetaInfo.java 49 public CurrencyDigits currencyDigits(String isoCode) {
50 return currencyDigits(isoCode, CurrencyUsage.STANDARD);
54 public CurrencyDigits currencyDigits(String isoCode, CurrencyUsage currencyPurpose) {
55 ICUResourceBundle b = digitInfo.findWithFallback(isoCode);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CurrencyData.java 25 public abstract CurrencyFormatInfo getFormatInfo(String isoCode);
102 public String getName(String isoCode) {
103 return fallback ? isoCode : null;
107 public String getPluralName(String isoCode, String pluralType) {
108 return fallback ? isoCode : null;
112 public String getSymbol(String isoCode) {
113 return fallback ? isoCode : null;
140 public CurrencyFormatInfo getFormatInfo(String isoCode) {
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CurrencyDisplayNames.java 108 * there is no data for the ISO code, substitutes isoCode or returns null.
110 * @param isoCode the three-letter ISO code.
113 public abstract String getSymbol(String isoCode);
117 * If there is no data for the ISO code, substitutes isoCode or returns null.
119 * @param isoCode the three-letter ISO code
122 public abstract String getName(String isoCode);
126 * the pluralKey. If there is no data for the ISO code, substitutes isoCode or
128 * substitutes the 'other' value (and failing that the isoCode) or returns null.
130 * @param isoCode the three-letter ISO code
135 public abstract String getPluralName(String isoCode, String pluralKey)
    [all...]
CurrencyMetaInfo.java 493 * This is equivalent to currencyDigits(isoCode, CurrencyUsage.STANDARD);
494 * @param isoCode the currency code
497 public CurrencyDigits currencyDigits(String isoCode) {
498 return currencyDigits(isoCode, CurrencyUsage.STANDARD);
503 * @param isoCode the currency code
507 public CurrencyDigits currencyDigits(String isoCode, CurrencyUsage currencyUsage) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CurrencyDisplayNames.java 112 * there is no data for the ISO code, substitutes isoCode or returns null.
114 * @param isoCode the three-letter ISO code.
118 public abstract String getSymbol(String isoCode);
122 * If there is no data for the ISO code, substitutes isoCode or returns null.
124 * @param isoCode the three-letter ISO code
128 public abstract String getName(String isoCode);
132 * the pluralKey. If there is no data for the ISO code, substitutes isoCode or
134 * substitutes the 'other' value (and failing that the isoCode) or returns null.
136 * @param isoCode the three-letter ISO code
142 public abstract String getPluralName(String isoCode, String pluralKey)
    [all...]
CurrencyMetaInfo.java 536 * This is equivalent to currencyDigits(isoCode, CurrencyUsage.STANDARD);
537 * @param isoCode the currency code
541 public CurrencyDigits currencyDigits(String isoCode) {
542 return currencyDigits(isoCode, CurrencyUsage.STANDARD);
547 * @param isoCode the currency code
552 public CurrencyDigits currencyDigits(String isoCode, CurrencyUsage currencyUsage) {
  /external/icu/android_icu4j/src/main/java/android/icu/util/
Currency.java 677 String isoCode = e.getValue();
681 symTrie.put(equivalentSymbol, new CurrencyStringInfo(isoCode, symbol));
686 String isoCode = e.getValue();
687 trie.put(name, new CurrencyStringInfo(isoCode, name));
692 private String isoCode;
695 public CurrencyStringInfo(String isoCode, String currencyString) {
696 this.isoCode = isoCode;
701 return isoCode;
819 // isoCode is kept for readResolve() and Currency class no longe
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Currency.java 703 String isoCode = e.getValue();
707 symTrie.put(equivalentSymbol, new CurrencyStringInfo(isoCode, symbol));
712 String isoCode = e.getValue();
713 trie.put(name, new CurrencyStringInfo(isoCode, name));
718 private String isoCode;
721 public CurrencyStringInfo(String isoCode, String currencyString) {
722 this.isoCode = isoCode;
727 return isoCode;
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cldrtest.c     [all...]
cnmdptst.c 554 UChar isoCode[16]={0};
561 u_uastrcpy(isoCode, currency[i]);
563 isoCode, u_strlen(isoCode), &status);
571 isoCode, sizeof(isoCode), &status);
577 u_UCharsToChars(isoCode,cStr,u_strlen(isoCode));
    [all...]
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 517 milliseconds

1 2