/external/icu/icu4c/source/common/ |
servlk.cpp | 28 LocaleKey* 29 LocaleKey::createWithCanonicalFallback(const UnicodeString* primaryID, 33 return LocaleKey::createWithCanonicalFallback(primaryID, canonicalFallbackID, KIND_ANY, status); 36 LocaleKey* 37 LocaleKey::createWithCanonicalFallback(const UnicodeString* primaryID, 47 return new LocaleKey(*primaryID, canonicalPrimaryID, canonicalFallbackID, kind); 50 LocaleKey::LocaleKey(const UnicodeString& primaryID, 70 LocaleKey::~LocaleKey() {} [all...] |
servslkf.cpp | 65 const LocaleKey& lkey = (const LocaleKey&)key; 66 if (_kind == LocaleKey::KIND_ANY || _kind == lkey.kind()) {
|
servls.cpp | 46 return get(locale, LocaleKey::KIND_ANY, NULL, status); 58 return get(locale, LocaleKey::KIND_ANY, actualReturn, status); 99 return registerInstance(objToAdopt, loc, LocaleKey::KIND_ANY, 106 return registerInstance(objToAdopt, locale, LocaleKey::KIND_ANY, LocaleKeyFactory::VISIBLE, status); 130 return registerInstance(objToAdopt, locale, LocaleKey::KIND_ANY, LocaleKeyFactory::VISIBLE, status); 136 return registerInstance(objToAdopt, locale, LocaleKey::KIND_ANY, 279 return LocaleKey::createWithCanonicalFallback(id, &validateFallbackLocale(), status); 285 return LocaleKey::createWithCanonicalFallback(id, &validateFallbackLocale(), kind, status);
|
servloc.h | 42 class LocaleKey; 64 class U_COMMON_API LocaleKey : public ICUServiceKey { 77 * Create a LocaleKey with canonical primary and fallback IDs. 79 static LocaleKey* createWithCanonicalFallback(const UnicodeString* primaryID, 84 * Create a LocaleKey with canonical primary and fallback IDs. 86 static LocaleKey* createWithCanonicalFallback(const UnicodeString* primaryID, 98 LocaleKey(const UnicodeString& primaryID, 167 virtual ~LocaleKey();
|
servlkf.cpp | 48 const LocaleKey& lkey = (const LocaleKey&)key;
|
brkiter.cpp | 247 LocaleKey& lkey = (LocaleKey&)key;
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
ICULocaleService.java | 43 return get(locale, LocaleKey.KIND_ANY, null); 59 return get(locale, LocaleKey.KIND_ANY, actualReturn); 92 return registerObject(obj, locale, LocaleKey.KIND_ANY, true); 101 return registerObject(obj, locale, LocaleKey.KIND_ANY, visible); 164 public static class LocaleKey extends ICUService.Key { 174 * Create a LocaleKey with canonical primary and fallback IDs. 176 public static LocaleKey createWithCanonicalFallback(String primaryID, String canonicalFallbackID) { 181 * Create a LocaleKey with canonical primary and fallback IDs. 183 public static LocaleKey createWithCanonicalFallback(String primaryID, String canonicalFallbackID, int kind) { 188 return new LocaleKey(primaryID, canonicalPrimaryID, canonicalFallbackID, kind) [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
ICULocaleService.java | 39 return get(locale, LocaleKey.KIND_ANY, null); 55 return get(locale, LocaleKey.KIND_ANY, actualReturn); 88 return registerObject(obj, locale, LocaleKey.KIND_ANY, true); 97 return registerObject(obj, locale, LocaleKey.KIND_ANY, visible); 160 public static class LocaleKey extends ICUService.Key { 170 * Create a LocaleKey with canonical primary and fallback IDs. 172 public static LocaleKey createWithCanonicalFallback(String primaryID, String canonicalFallbackID) { 177 * Create a LocaleKey with canonical primary and fallback IDs. 179 public static LocaleKey createWithCanonicalFallback(String primaryID, String canonicalFallbackID, int kind) { 184 return new LocaleKey(primaryID, canonicalPrimaryID, canonicalFallbackID, kind) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
NumberFormatServiceShim.java | 16 import android.icu.impl.ICULocaleService.LocaleKey; 52 if (!handlesKey(key) || !(key instanceof LocaleKey)) { 56 LocaleKey lkey = (LocaleKey)key;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
NumberFormatServiceShim.java | 15 import com.ibm.icu.impl.ICULocaleService.LocaleKey; 51 if (!handlesKey(key) || !(key instanceof LocaleKey)) { 55 LocaleKey lkey = (LocaleKey)key;
|
/external/icu/icu4c/source/test/intltest/ |
icusvtst.cpp | 114 return LocaleKey::createWithCanonicalFallback(id, NULL, status); // no fallback locale 498 return LocaleKey::createWithCanonicalFallback(id, NULL, status); // no fallback locale [all...] |
uobjtest.cpp | 480 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 | 27 import android.icu.impl.ICULocaleService.LocaleKey; 108 return LocaleKey.createWithCanonicalFallback(id, null); // no fallback locale 685 target = service.get(de_US, LocaleKey.KIND_ANY); 697 target = service.get(de_US, LocaleKey.KIND_ANY, actualReturn); 717 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 | 26 import com.ibm.icu.impl.ICULocaleService.LocaleKey; 104 return LocaleKey.createWithCanonicalFallback(id, null); // no fallback locale 681 target = service.get(de_US, LocaleKey.KIND_ANY); 693 target = service.get(de_US, LocaleKey.KIND_ANY, actualReturn); 713 LocaleKey lkey = LocaleKey.createWithCanonicalFallback("en", null, 1234); 915 // LocaleKey 917 // LocaleKey lkey = LocaleKey.create("en_US", "ja_JP"); 918 // lkey = LocaleKey.create(null, null) [all...] |
/libcore/ojluni/src/main/java/java/util/ |
Locale.java | [all...] |
/external/icu/icu4c/source/i18n/ |
coll.cpp | 136 const LocaleKey& lkey = (const LocaleKey&)key; 166 LocaleKey& lkey = (LocaleKey&)key; 740 const LocaleKey& lkey = (const LocaleKey&)key;
|
numfmt.cpp | 890 const LocaleKey& lkey = (const LocaleKey&)key; 951 LocaleKey& lkey = (LocaleKey&)key; [all...] |
calendar.cpp | 438 if(dynamic_cast<const LocaleKey*>(&key) == NULL) { 439 fprintf(stderr, "::create - not a LocaleKey!\n"); 442 const LocaleKey& lkey = (LocaleKey&)key; 484 LocaleKey &lkey = (LocaleKey&)key; 528 LocaleKey& lkey = (LocaleKey&)key; 870 u = getCalendarService(success)->get(aLocale, LocaleKey::KIND_ANY, &actualLoc, success); 905 c = (Calendar*)getCalendarService(success)->get(l, LocaleKey::KIND_ANY, &actualLoc2, success) [all...] |
/frameworks/base/ |
compiled-classes-phone | [all...] |
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/ |
icu4j-2.6.1.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
com.ibm.icu_4.2.1.v20100412.jar | |
/external/libgdx/backends/gdx-backend-moe/libs/ |
intel-moe-core.jar | |
/prebuilts/misc/common/icu4j/ |
icu4j.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 | |