Home | History | Annotate | Download | only in common

Lines Matching defs:LocaleKey

29 LocaleKey*
30 LocaleKey::createWithCanonicalFallback(const UnicodeString* primaryID,
34 return LocaleKey::createWithCanonicalFallback(primaryID, canonicalFallbackID, KIND_ANY, status);
37 LocaleKey*
38 LocaleKey::createWithCanonicalFallback(const UnicodeString* primaryID,
48 return new LocaleKey(*primaryID, canonicalPrimaryID, canonicalFallbackID, kind);
51 LocaleKey::LocaleKey(const UnicodeString& primaryID,
71 LocaleKey::~LocaleKey() {}
74 LocaleKey::prefix(UnicodeString& result) const {
85 LocaleKey::kind() const {
90 LocaleKey::canonicalID(UnicodeString& result) const {
95 LocaleKey::currentID(UnicodeString& result) const {
103 LocaleKey::currentDescriptor(UnicodeString& result) const {
113 LocaleKey::canonicalLocale(Locale& result) const {
118 LocaleKey::currentLocale(Locale& result) const {
123 LocaleKey::fallback() {
149 LocaleKey::isFallbackOf(const UnicodeString& id) const {
159 LocaleKey::debug(UnicodeString& result) const
174 LocaleKey::debugClass(UnicodeString& result) const
176 return result.append("LocaleKey ");
180 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(LocaleKey)