Searched refs:LocaleKey (Results 1 - 18 of 18) sorted by relevance

/external/icu/icu4c/source/common/
H A Dservlk.cpp30 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, function in class:LocaleKey
72 LocaleKey::~LocaleKey() {}
[all...]
H A Dservslkf.cpp67 const LocaleKey& lkey = (const LocaleKey&)key;
68 if (_kind == LocaleKey::KIND_ANY || _kind == lkey.kind()) {
H A Dservls.cpp48 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);
H A Dservloc.h44 class LocaleKey;
66 class U_COMMON_API LocaleKey : public ICUServiceKey { class in inherits: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();
H A Dservlkf.cpp50 const LocaleKey& lkey = (const LocaleKey&)key;
H A Dbrkiter.cpp249 LocaleKey& lkey = (LocaleKey&)key;
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DICULocaleService.java45 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 { class in class:ICULocaleService
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(primaryI
210 protected LocaleKey(String primaryID, String canonicalPrimaryID, String canonicalFallbackID, int kind) { method in class:ICULocaleService.LocaleKey
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICULocaleService.java41 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 { class in class:ICULocaleService
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(primaryI
206 protected LocaleKey(String primaryID, String canonicalPrimaryID, String canonicalFallbackID, int kind) { method in class:ICULocaleService.LocaleKey
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DNumberFormatServiceShim.java18 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/
H A DNumberFormatServiceShim.java17 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/
H A Dicusvtst.cpp117 return LocaleKey::createWithCanonicalFallback(id, NULL, status); // no fallback locale
501 return LocaleKey::createWithCanonicalFallback(id, NULL, status); // no fallback locale
1063 UnicodeString* target = (UnicodeString*)service.get("de_US", LocaleKey::KIND_ANY, status);
1087 UnicodeString* target = (UnicodeString*)service.get("de_US", LocaleKey::KIND_ANY, &actualReturn, status);
1133 LocaleKey* lkey = LocaleKey::createWithCanonicalFallback(&english, NULL, 1234, status);
1383 // LocaleKey
1388 LocaleKey* key = LocaleKey::createWithCanonicalFallback(&primary, &fallback, status);
1390 if (key->getDynamicClassID() != LocaleKey
[all...]
H A Duobjtest.cpp482 TESTCLASSID_FACTORY(LocaleKey, LocaleKey::createWithCanonicalFallback(&baz, &bat, LocaleKey::KIND_ANY, status));
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DICUServiceTest.java31 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
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DICUServiceTest.java30 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
[all...]
/external/icu/icu4c/source/i18n/
H A Dcoll.cpp138 const LocaleKey& lkey = (const LocaleKey&)key;
168 LocaleKey& lkey = (LocaleKey&)key;
742 const LocaleKey& lkey = (const LocaleKey&)key;
H A Dnumfmt.cpp893 const LocaleKey& lkey = (const LocaleKey&)key;
954 LocaleKey& lkey = (LocaleKey&)key;
H A Dcalendar.cpp434 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
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 198 milliseconds