Lines Matching refs:locale
3 pub(crate) fn short_months(locale: Locale) -> &'static [&'static str] { in short_months()
4 locale_match!(locale => LC_TIME::ABMON) in short_months()
7 pub(crate) fn long_months(locale: Locale) -> &'static [&'static str] { in long_months()
8 locale_match!(locale => LC_TIME::MON) in long_months()
11 pub(crate) fn short_weekdays(locale: Locale) -> &'static [&'static str] { in short_weekdays()
12 locale_match!(locale => LC_TIME::ABDAY) in short_weekdays()
15 pub(crate) fn long_weekdays(locale: Locale) -> &'static [&'static str] { in long_weekdays()
16 locale_match!(locale => LC_TIME::DAY) in long_weekdays()
19 pub(crate) fn am_pm(locale: Locale) -> &'static [&'static str] { in am_pm()
20 locale_match!(locale => LC_TIME::AM_PM) in am_pm()
23 pub(crate) fn d_fmt(locale: Locale) -> &'static str { in d_fmt()
24 locale_match!(locale => LC_TIME::D_FMT) in d_fmt()
27 pub(crate) fn d_t_fmt(locale: Locale) -> &'static str { in d_t_fmt()
28 locale_match!(locale => LC_TIME::D_T_FMT) in d_t_fmt()
31 pub(crate) fn t_fmt(locale: Locale) -> &'static str { in t_fmt()
32 locale_match!(locale => LC_TIME::T_FMT) in t_fmt()