Searched refs:countryCode (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/java/java/util/spi/
H A DLocaleNameProvider.java53 * @param countryCode an ISO 3166 language code
61 public abstract String getDisplayCountry(String countryCode, Locale locale); argument
/libcore/luni/src/main/java/java/util/
H A DLocale.java235 private transient String countryCode; field in class:Locale
249 this.countryCode = upperCaseCountryCode;
277 countryCode = "";
293 countryCode = country.toUpperCase(Locale.US);
318 && countryCode.equals(o.countryCode)
347 return countryCode;
374 if (countryCode.isEmpty()) {
447 if (!countryCode.isEmpty()) {
452 buffer.append(displayCountry.isEmpty() ? countryCode
[all...]
/libcore/luni/src/main/java/libcore/icu/
H A DICU.java168 public static native String getCurrencyCode(String countryCode); argument
173 public static native String getDisplayCountryNative(String countryCode, String locale); argument
H A DTimeZones.java141 private static native String[] forCountryCode(String countryCode); argument
/libcore/luni/src/main/native/
H A Dlibcore_icu_TimeZones.cpp34 static jobjectArray TimeZones_forCountryCode(JNIEnv* env, jclass, jstring countryCode) { argument
35 ScopedUtfChars countryChars(env, countryCode);
H A Dlibcore_icu_ICU.cpp140 ScopedUtfChars countryCode(env, javaCountryCode);
141 ScopedResourceBundle currency(ures_getByKey(currencyMap.get(), countryCode.c_str(), NULL, &status));
587 jstring countryCode = env->NewStringUTF(Locale::createFromName(localeName.c_str()).getCountry()); local
588 jstring internationalCurrencySymbol = ICU_getCurrencyCode(env, NULL, countryCode);
589 env->DeleteLocalRef(countryCode);
590 countryCode = NULL;

Completed in 106 milliseconds