Searched refs:locale_ (Results 1 - 3 of 3) sorted by relevance

/external/fmtlib/fmt/
H A Dposix.h332 locale_t locale_; member in class:fmt::Locale
339 Locale() : locale_(newlocale(LC_NUMERIC_MASK, "C", FMT_NULL)) {
340 if (!locale_)
343 ~Locale() { freelocale(locale_); }
345 Type get() const { return locale_; }
351 double result = strtod_l(str, &end, locale_);
/external/messageformat/java/com/ibm/icu/simple/
H A DMessageFormat.java367 locale_ = Locale.getDefault(); // Category.FORMAT
382 locale_ = locale;
393 return locale_;
1462 private transient Locale locale_; field in class:MessageFormat
1492 DateFormat.SHORT, DateFormat.SHORT, locale_);//fix
1498 stockNumberFormatter = NumberFormat.getInstance(locale_);
1997 rules = PluralRules.forLocale(msgFormat.locale_, type);
2104 newFormat = NumberFormat.getInstance(locale_);
2107 newFormat = NumberFormat.getCurrencyInstance(locale_);
2110 newFormat = NumberFormat.getPercentInstance(locale_);
[all...]
H A DPluralFormat.java139 private Locale locale_ = null; field in class:PluralFormat
227 locale_ = locale;
457 buf.append("locale=" + locale_);

Completed in 296 milliseconds