Searched refs:isoCode (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dcurrunit.cpp21 *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);
H A Dcurramt.cpp20 CurrencyAmount::CurrencyAmount(const Formattable& amount, const UChar* isoCode, argument
22 Measure(amount, new CurrencyUnit(isoCode, ec), ec) {
25 CurrencyAmount::CurrencyAmount(double amount, const UChar* isoCode, argument
27 Measure(Formattable(amount), new CurrencyUnit(isoCode, ec), ec) {
H A Ducurr.cpp41 const UChar *isoCode; /* const because it's a reference to a resource bundle string. */ member in struct:IsoCodeEntry
493 ucurr_register(const UChar* isoCode, const char* locale, UErrorCode *status) argument
498 return CReg::reg(isoCode, id, status);
2048 const UChar *isoCode = ures_getString(idRes, &isoLength, &localStatus); local
2080 entry->isoCode = isoCode;
2085 uhash_put(isoCodes, (UChar *)isoCode, entry, &localStatus);
2167 ucurr_isAvailable(const UChar* isoCode, UDate from, UDate to, UErrorCode* eErrorCode) { argument
2173 IsoCodeEntry* result = (IsoCodeEntry *) uhash_get(gIsoCodes, isoCode);
H A Dmeasfmt.cpp725 UChar isoCode[4]; local
726 u_charsToUChars(amtUnit.getSubtype(), isoCode, 4);
728 new CurrencyAmount(amtNumber, isoCode, status),
/macosx-10.10.1/ICU-531.30/icuSources/i18n/unicode/
H A Dcurrunit.h39 * @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]; member in class:CurrencyUnit
104 return isoCode;
H A Dcurramt.h41 * @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,
H A Ducurr.h90 * @param isoCode the three-letter ISO 4217 currency code
98 ucurr_register(const UChar* isoCode,
254 * @param isoCode
273 ucurr_isAvailable(const UChar* isoCode,
/macosx-10.10.1/ICU-531.30/icuSources/test/cintltst/
H A Dcldrtest.c1368 const char *isoCode, *structISOCode; local
1382 while ((isoCode = uenum_next(en, NULL, &errorCode)) != NULL && ures_hasNext(currencies)) {
1386 if (strcmp(structISOCode, isoCode) != 0) {
1387 log_err("First difference found at structLocale(%s) and ISO4217(%s).\n", structISOCode, isoCode);
1412 UChar* isoCode = (UChar*)malloc(sizeof(UChar) * (uprv_strlen(usdCode) + 1)); local
1415 u_charsToUChars(eurCode, isoCode, uprv_strlen(usdCode) + 1);
1416 if (ucurr_isAvailable(isoCode, U_DATE_MIN, U_DATE_MAX, &errorCode) == FALSE) {
1420 u_charsToUChars(usdCode, isoCode, uprv_strlen(zzzCode) + 1);
1421 if (ucurr_isAvailable(isoCode, U_DATE_MIN, U_DATE_MAX, &errorCode) == FALSE) {
1425 u_charsToUChars(zzzCode, isoCode, uprv_strle
[all...]
H A Dcnmdptst.c554 UChar isoCode[16]={0}; local
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));

Completed in 143 milliseconds