Home | History | Annotate | Download | only in common

Lines Matching refs:LocaleKey

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() {}
73 LocaleKey::prefix(UnicodeString& result) const {
84 LocaleKey::kind() const {
89 LocaleKey::canonicalID(UnicodeString& result) const {
94 LocaleKey::currentID(UnicodeString& result) const {
102 LocaleKey::currentDescriptor(UnicodeString& result) const {
112 LocaleKey::canonicalLocale(Locale& result) const {
117 LocaleKey::currentLocale(Locale& result) const {
122 LocaleKey::fallback() {
148 LocaleKey::isFallbackOf(const UnicodeString& id) const {
158 LocaleKey::debug(UnicodeString& result) const
173 LocaleKey::debugClass(UnicodeString& result) const
175 return result.append((UnicodeString)"LocaleKey ");
179 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(LocaleKey)