Home | History | Annotate | Download | only in common

Lines Matching refs:Locale

32  * Release all static memory held by Locale Utility.  
122 Locale&
123 LocaleUtility::initLocaleFromName(const UnicodeString& id, Locale& result)
132 * create a Locale.
134 * Problem: Locale ID strings may contain '@' which is a variant
137 * Hack: Since ICU code can handle locale IDs with multiple encodings
146 * There should be only at most one '@' in a locale ID.
165 result = Locale::createFromName(buffer);
171 LocaleUtility::initNameFromLocale(const Locale& locale, UnicodeString& result)
173 if (locale.isBogus()) {
176 result.append(UnicodeString(locale.getName(), -1, US_INV));