HomeSort by relevance Sort by last modified time
    Searched refs:LocaleKey (Results 1 - 18 of 18) sorted by null

  /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 261 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);
167 public static class LocaleKey extends ICUService.Key {
177 * Create a LocaleKey with canonical primary and fallback IDs.
179 public static LocaleKey createWithCanonicalFallback(String primaryID, String canonicalFallbackID) {
184 * Create a LocaleKey with canonical primary and fallback IDs.
186 public static LocaleKey createWithCanonicalFallback(String primaryID, String canonicalFallbackID, int kind) {
191 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 486 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 33 import android.icu.impl.ICULocaleService.LocaleKey;
110 return LocaleKey.createWithCanonicalFallback(id, null); // no fallback locale
700 target = service.get(de_US, LocaleKey.KIND_ANY);
712 target = service.get(de_US, LocaleKey.KIND_ANY, actualReturn);
732 LocaleKey lkey = LocaleKey.createWithCanonicalFallback("en", null, 1234);
940 // LocaleKey
942 // LocaleKey lkey = LocaleKey.create("en_US", "ja_JP");
943 // lkey = LocaleKey.create(null, null)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
ICUServiceTest.java 32 import com.ibm.icu.impl.ICULocaleService.LocaleKey;
107 return LocaleKey.createWithCanonicalFallback(id, null); // no fallback locale
697 target = service.get(de_US, LocaleKey.KIND_ANY);
709 target = service.get(de_US, LocaleKey.KIND_ANY, actualReturn);
729 LocaleKey lkey = LocaleKey.createWithCanonicalFallback("en", null, 1234);
937 // LocaleKey
939 // LocaleKey lkey = LocaleKey.create("en_US", "ja_JP");
940 // lkey = LocaleKey.create(null, null)
    [all...]
  /external/icu/icu4c/source/i18n/
coll.cpp 140 const LocaleKey& lkey = (const LocaleKey&)key;
170 LocaleKey& lkey = (LocaleKey&)key;
751 const LocaleKey& lkey = (const LocaleKey&)key;
calendar.cpp 437 if(dynamic_cast<const LocaleKey*>(&key) == NULL) {
438 fprintf(stderr, "::create - not a LocaleKey!\n");
441 const LocaleKey& lkey = (LocaleKey&)key;
483 LocaleKey &lkey = (LocaleKey&)key;
527 LocaleKey& lkey = (LocaleKey&)key;
879 u = getCalendarService(success)->get(aLocale, LocaleKey::KIND_ANY, &actualLoc, success);
914 c = (Calendar*)getCalendarService(success)->get(l, LocaleKey::KIND_ANY, &actualLoc2, success)
    [all...]
numfmt.cpp 891 const LocaleKey& lkey = (const LocaleKey&)key;
952 LocaleKey& lkey = (LocaleKey&)key;
    [all...]
  /external/cldr/tools/java/libs/
icu4j.jar 

Completed in 690 milliseconds