• Home
  • Raw
  • Download

Lines Matching refs:Locale

195 class U_COMMON_API Locale : public UObject {
198 static const Locale &U_EXPORT2 getRoot(void);
200 static const Locale &U_EXPORT2 getEnglish(void);
202 static const Locale &U_EXPORT2 getFrench(void);
204 static const Locale &U_EXPORT2 getGerman(void);
206 static const Locale &U_EXPORT2 getItalian(void);
208 static const Locale &U_EXPORT2 getJapanese(void);
210 static const Locale &U_EXPORT2 getKorean(void);
212 static const Locale &U_EXPORT2 getChinese(void);
214 static const Locale &U_EXPORT2 getSimplifiedChinese(void);
216 static const Locale &U_EXPORT2 getTraditionalChinese(void);
219 static const Locale &U_EXPORT2 getFrance(void);
221 static const Locale &U_EXPORT2 getGermany(void);
223 static const Locale &U_EXPORT2 getItaly(void);
225 static const Locale &U_EXPORT2 getJapan(void);
227 static const Locale &U_EXPORT2 getKorea(void);
229 static const Locale &U_EXPORT2 getChina(void);
231 static const Locale &U_EXPORT2 getPRC(void);
233 static const Locale &U_EXPORT2 getTaiwan(void);
235 static const Locale &U_EXPORT2 getUK(void);
237 static const Locale &U_EXPORT2 getUS(void);
239 static const Locale &U_EXPORT2 getCanada(void);
241 static const Locale &U_EXPORT2 getCanadaFrench(void);
251 Locale();
277 Locale( const char * language,
288 Locale(const Locale& other);
297 Locale(Locale&& other) U_NOEXCEPT;
303 virtual ~Locale() ;
312 Locale& operator=(const Locale& other);
323 Locale& operator=(Locale&& other) U_NOEXCEPT;
332 UBool operator==(const Locale& other) const;
342 inline UBool operator!=(const Locale& other) const;
355 Locale *clone() const;
373 static const Locale& U_EXPORT2 getDefault(void);
387 static void U_EXPORT2 setDefault(const Locale& newLocale,
412 static Locale U_EXPORT2 forLanguageTag(StringPiece tag, UErrorCode& status);
451 static Locale U_EXPORT2 createFromName(const char *name);
461 static Locale U_EXPORT2 createCanonical(const char* name);
838 UnicodeString& getDisplayLanguage( const Locale& displayLocale,
866 UnicodeString& getDisplayScript( const Locale& displayLocale,
894 UnicodeString& getDisplayCountry( const Locale& displayLocale,
914 UnicodeString& getDisplayVariant( const Locale& displayLocale,
942 UnicodeString& getDisplayName( const Locale& displayLocale,
976 static const Locale* U_EXPORT2 getAvailableLocales(int32_t& count);
1031 virtual const Locale &next() = 0;
1062 const Locale &next() override { return *it_++; } in next()
1100 const Locale &next() override { return converter_(*it_++); } in next()
1125 Locale& init(const char* cLocaleID, UBool canonicalize);
1135 Locale(ELocaleType);
1140 static Locale *getLocaleCache(void);
1154 static const Locale &getLocale(int locid);
1160 friend Locale *locale_set_default_internal(const char *, UErrorCode& status);
1169 Locale::operator!=(const Locale& other) const
1175 Locale::toLanguageTag(UErrorCode& status) const in toLanguageTag()
1184 Locale::getCountry() const in getCountry()
1190 Locale::getLanguage() const in getLanguage()
1196 Locale::getScript() const in getScript()
1202 Locale::getVariant() const in getVariant()
1208 Locale::getName() const in getName()
1214 Locale::getKeywords(OutputIterator iterator, UErrorCode& status) const in getKeywords()
1231 Locale::getUnicodeKeywords(OutputIterator iterator, UErrorCode& status) const in getUnicodeKeywords()
1248 Locale::getKeywordValue(StringPiece keywordName, UErrorCode& status) const in getKeywordValue()
1257 Locale::getUnicodeKeywordValue(StringPiece keywordName, UErrorCode& status) const in getUnicodeKeywordValue()
1266 Locale::isBogus(void) const { in isBogus()