• 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 bool operator==(const Locale& other) const;
342 inline bool 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);
836 UnicodeString& getDisplayLanguage( const Locale& displayLocale,
864 UnicodeString& getDisplayScript( const Locale& displayLocale,
892 UnicodeString& getDisplayCountry( const Locale& displayLocale,
912 UnicodeString& getDisplayVariant( const Locale& displayLocale,
940 UnicodeString& getDisplayName( const Locale& displayLocale,
974 static const Locale* U_EXPORT2 getAvailableLocales(int32_t& count);
1029 virtual const Locale &next() = 0;
1060 const Locale &next() override { return *it_++; } in next()
1098 const Locale &next() override { return converter_(*it_++); } in next()
1123 Locale& init(const char* cLocaleID, UBool canonicalize);
1133 Locale(ELocaleType);
1138 static Locale *getLocaleCache(void);
1152 static const Locale &getLocale(int locid);
1158 friend Locale *locale_set_default_internal(const char *, UErrorCode& status);
1167 Locale::operator!=(const Locale& other) const
1173 Locale::toLanguageTag(UErrorCode& status) const in toLanguageTag()
1182 Locale::getCountry() const in getCountry()
1188 Locale::getLanguage() const in getLanguage()
1194 Locale::getScript() const in getScript()
1200 Locale::getVariant() const in getVariant()
1206 Locale::getName() const in getName()
1212 Locale::getKeywords(OutputIterator iterator, UErrorCode& status) const in getKeywords()
1229 Locale::getUnicodeKeywords(OutputIterator iterator, UErrorCode& status) const in getUnicodeKeywords()
1246 Locale::getKeywordValue(StringPiece keywordName, UErrorCode& status) const in getKeywordValue()
1255 Locale::getUnicodeKeywordValue(StringPiece keywordName, UErrorCode& status) const in getUnicodeKeywordValue()
1264 Locale::isBogus(void) const { in isBogus()