Lines Matching refs:Locale
57 * is guaranteed to get an appropriate formatting pattern for whatever locale the
69 * Unicode Locale Data Markup Language (LDML)</a>. The following pattern letters are
386 * generation, it should match the 12-hour-cycle format preferred by the locale (h or K); it should not match
394 * generation, it should match the 24-hour-cycle format preferred by the locale (H or k); it should not match a
614 * Examples using the US locale:
707 * locale.
717 * Construct a SimpleDateFormat using the given pattern and the default locale.
718 * The locale is used to obtain the symbols used in formatting (e.g., the
731 * Construct a SimpleDateFormat using the given pattern, numbering system override, and the default locale.
732 * The locale is used to obtain the symbols used in formatting (e.g., the
756 * Construct a SimpleDateFormat using the given pattern and locale.
757 * The locale is used to obtain the symbols used in formatting (e.g., the
763 * @param locale the given locale.
768 const Locale& locale,
772 * Construct a SimpleDateFormat using the given pattern, numbering system override, and locale.
773 * The locale is used to obtain the symbols used in formatting (e.g., the
788 * @param locale the given locale.
794 const Locale& locale,
798 * Construct a SimpleDateFormat using the given pattern and locale-specific
811 * Construct a SimpleDateFormat using the given pattern and locale-specific
865 * Example: using the US locale: "yyyy.MM.dd e 'at' HH:mm:ss zzz" ->>
885 * Example: using the US locale: "yyyy.MM.dd e 'at' HH:mm:ss zzz" ->>
908 * Example: using the US locale: "yyyy.MM.dd e 'at' HH:mm:ss zzz" ->>
932 * Example: using the US locale: "yyyy.MM.dd e 'at' HH:mm:ss zzz" ->>
1153 * but a locale can specify characters to use in pattern descriptions
1155 * (Presumably, letters that would be more mnemonic in that locale's
1245 * calendar for the specified or default locale is used. The caller should
1333 * Get the locale of this simple date formatter.
1336 * @return locale in this simple date formatter
1339 const Locale& getSmpFmtLocale(void) const;
1353 * @param locale the given locale.
1357 SimpleDateFormat(EStyle timeStyle, EStyle dateStyle, const Locale& locale, UErrorCode& status);
1360 * Construct a SimpleDateFormat for the given locale. If no resource data
1363 * @param locale the given locale.
1367 SimpleDateFormat(const Locale& locale, UErrorCode& status); // Use default pattern
1437 * @param locale Locale of the calendar
1441 Calendar *initializeCalendar(TimeZone* adoptZone, const Locale& locale, UErrorCode& status);
1445 * @param locale Locale of the symbols
1449 void initializeSymbols(const Locale& locale, Calendar* calendar, UErrorCode& status);
1453 * out of a resource bundle and initialize the locale based on it.
1456 * @param locale The locale to load the patterns from.
1460 void construct(EStyle timeStyle, EStyle dateStyle, const Locale& locale, UErrorCode& status);
1465 * @param locale The locale for which we want a Calendar and a NumberFormat.
1468 void initialize(const Locale& locale, UErrorCode& status);
1611 void initNumberFormatters(const Locale &locale,UErrorCode &status);
1621 void processOverrideString(const Locale &locale, const UnicodeString &str, int8_t type, UErrorCode &status);
1664 * The original locale used (for reloading symbols)
1666 Locale fLocale;