Home | History | Annotate | Download | only in i18n

Lines Matching refs:Locale

36         : locale(Locale::getDefault()),
43 PluralFormat::PluralFormat(const Locale& loc, UErrorCode& status)
44 : locale(loc),
52 : locale(Locale::getDefault()),
59 PluralFormat::PluralFormat(const Locale& loc,
62 : locale(loc),
69 PluralFormat::PluralFormat(const Locale& loc,
72 : locale(loc),
81 : locale(Locale::getDefault()),
89 PluralFormat::PluralFormat(const Locale& loc,
92 : locale(loc),
103 : locale(Locale::getDefault()),
111 PluralFormat::PluralFormat(const Locale& loc,
115 : locale(loc),
123 PluralFormat::PluralFormat(const Locale& loc,
127 : locale(loc),
137 locale(other.locale),
155 numberFormat = NumberFormat::createInstance(locale, status);
160 pluralRulesWrapper.pluralRules = PluralRules::forLocale(locale, status);
178 pluralRulesWrapper.pluralRules = PluralRules::forLocale(locale, type, status);
187 numberFormat= NumberFormat::createInstance(locale, status);
293 PluralFormat::setLocale(const Locale& loc, UErrorCode& status) {
297 locale = loc;
330 locale = other.locale;
349 locale == o.locale &&