/external/icu/icu4c/source/common/ |
servlk.cpp | 30 LocaleKey* 31 LocaleKey::createWithCanonicalFallback(const UnicodeString* primaryID, 35 return LocaleKey::createWithCanonicalFallback(primaryID, canonicalFallbackID, KIND_ANY, status); 38 LocaleKey* 39 LocaleKey::createWithCanonicalFallback(const UnicodeString* primaryID, 49 return new LocaleKey(*primaryID, canonicalPrimaryID, canonicalFallbackID, kind); 52 LocaleKey::LocaleKey(const UnicodeString& primaryID, 72 LocaleKey::~LocaleKey() {} [all...] |
servslkf.cpp | 67 const LocaleKey& lkey = (const LocaleKey&)key; 68 if (_kind == LocaleKey::KIND_ANY || _kind == lkey.kind()) {
|
servls.cpp | 48 return get(locale, LocaleKey::KIND_ANY, NULL, status); 60 return get(locale, LocaleKey::KIND_ANY, actualReturn, status); 101 return registerInstance(objToAdopt, loc, LocaleKey::KIND_ANY, 108 return registerInstance(objToAdopt, locale, LocaleKey::KIND_ANY, LocaleKeyFactory::VISIBLE, status); 132 return registerInstance(objToAdopt, locale, LocaleKey::KIND_ANY, LocaleKeyFactory::VISIBLE, status); 138 return registerInstance(objToAdopt, locale, LocaleKey::KIND_ANY, 281 return LocaleKey::createWithCanonicalFallback(id, &validateFallbackLocale(), status); 287 return LocaleKey::createWithCanonicalFallback(id, &validateFallbackLocale(), kind, status);
|
servloc.h | 44 class LocaleKey; 66 class U_COMMON_API LocaleKey : public ICUServiceKey { 79 * Create a LocaleKey with canonical primary and fallback IDs. 81 static LocaleKey* createWithCanonicalFallback(const UnicodeString* primaryID, 86 * Create a LocaleKey with canonical primary and fallback IDs. 88 static LocaleKey* createWithCanonicalFallback(const UnicodeString* primaryID, 100 LocaleKey(const UnicodeString& primaryID, 169 virtual ~LocaleKey();
|
servlkf.cpp | 50 const LocaleKey& lkey = (const LocaleKey&)key;
|
brkiter.cpp | 249 LocaleKey& lkey = (LocaleKey&)key;
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
ICULocaleService.java | 45 return get(locale, LocaleKey.KIND_ANY, null); 61 return get(locale, LocaleKey.KIND_ANY, actualReturn); 94 return registerObject(obj, locale, LocaleKey.KIND_ANY, true); 103 return registerObject(obj, locale, LocaleKey.KIND_ANY, visible); 166 public static class LocaleKey extends ICUService.Key { 176 * Create a LocaleKey with canonical primary and fallback IDs. 178 public static LocaleKey createWithCanonicalFallback(String primaryID, String canonicalFallbackID) { 183 * Create a LocaleKey with canonical primary and fallback IDs. 185 public static LocaleKey createWithCanonicalFallback(String primaryID, String canonicalFallbackID, int kind) { 190 return new LocaleKey(primaryID, canonicalPrimaryID, canonicalFallbackID, kind) [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
ICULocaleService.java | 41 return get(locale, LocaleKey.KIND_ANY, null); 57 return get(locale, LocaleKey.KIND_ANY, actualReturn); 90 return registerObject(obj, locale, LocaleKey.KIND_ANY, true); 99 return registerObject(obj, locale, LocaleKey.KIND_ANY, visible); 162 public static class LocaleKey extends ICUService.Key { 172 * Create a LocaleKey with canonical primary and fallback IDs. 174 public static LocaleKey createWithCanonicalFallback(String primaryID, String canonicalFallbackID) { 179 * Create a LocaleKey with canonical primary and fallback IDs. 181 public static LocaleKey createWithCanonicalFallback(String primaryID, String canonicalFallbackID, int kind) { 186 return new LocaleKey(primaryID, canonicalPrimaryID, canonicalFallbackID, kind) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
NumberFormatServiceShim.java | 18 import android.icu.impl.ICULocaleService.LocaleKey; 54 if (!handlesKey(key) || !(key instanceof LocaleKey)) { 58 LocaleKey lkey = (LocaleKey)key;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
NumberFormatServiceShim.java | 17 import com.ibm.icu.impl.ICULocaleService.LocaleKey; 53 if (!handlesKey(key) || !(key instanceof LocaleKey)) { 57 LocaleKey lkey = (LocaleKey)key;
|
/external/icu/icu4c/source/test/intltest/ |
icusvtst.cpp | 117 return LocaleKey::createWithCanonicalFallback(id, NULL, status); // no fallback locale 501 return LocaleKey::createWithCanonicalFallback(id, NULL, status); // no fallback locale [all...] |
uobjtest.cpp | 482 TESTCLASSID_FACTORY(LocaleKey, LocaleKey::createWithCanonicalFallback(&baz, &bat, LocaleKey::KIND_ANY, status));
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
ICUServiceTest.java | 31 import android.icu.impl.ICULocaleService.LocaleKey; 104 return LocaleKey.createWithCanonicalFallback(id, null); // no fallback locale 683 target = service.get(de_US, LocaleKey.KIND_ANY); 695 target = service.get(de_US, LocaleKey.KIND_ANY, actualReturn); 715 LocaleKey lkey = LocaleKey.createWithCanonicalFallback("en", null, 1234); 919 // LocaleKey 921 // LocaleKey lkey = LocaleKey.create("en_US", "ja_JP"); 922 // lkey = LocaleKey.create(null, null) [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
ICUServiceTest.java | 30 import com.ibm.icu.impl.ICULocaleService.LocaleKey; 103 return LocaleKey.createWithCanonicalFallback(id, null); // no fallback locale 682 target = service.get(de_US, LocaleKey.KIND_ANY); 694 target = service.get(de_US, LocaleKey.KIND_ANY, actualReturn); 714 LocaleKey lkey = LocaleKey.createWithCanonicalFallback("en", null, 1234); 918 // LocaleKey 920 // LocaleKey lkey = LocaleKey.create("en_US", "ja_JP"); 921 // lkey = LocaleKey.create(null, null) [all...] |
/libcore/ojluni/src/main/java/java/util/ |
Locale.java | [all...] |
/external/icu/icu4c/source/i18n/ |
coll.cpp | 138 const LocaleKey& lkey = (const LocaleKey&)key; 168 LocaleKey& lkey = (LocaleKey&)key; 742 const LocaleKey& lkey = (const LocaleKey&)key;
|
numfmt.cpp | 893 const LocaleKey& lkey = (const LocaleKey&)key; 954 LocaleKey& lkey = (LocaleKey&)key; [all...] |
calendar.cpp | 434 if(dynamic_cast<const LocaleKey*>(&key) == NULL) { 435 fprintf(stderr, "::create - not a LocaleKey!\n"); 438 const LocaleKey& lkey = (LocaleKey&)key; 480 LocaleKey &lkey = (LocaleKey&)key; 524 LocaleKey& lkey = (LocaleKey&)key; 868 u = getCalendarService(success)->get(aLocale, LocaleKey::KIND_ANY, &actualLoc, success); 903 c = (Calendar*)getCalendarService(success)->get(l, LocaleKey::KIND_ANY, &actualLoc2, success) [all...] |
/frameworks/base/config/ |
preloaded-classes | [all...] |
compiled-classes-phone | [all...] |
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/ |
icu4j-2.6.1.jar | |
/prebuilts/misc/common/icu4j/ |
icu4j.jar | |
/prebuilts/misc/common/robolectric/lib/ |
icu4j-53.1.jar | |
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/ |
icu4j-53.1.jar | |
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/ |
icu4j-54.1.1.jar | |