Lines Matching refs:lcid

87     String formatDate(LCID lcid, int year, int month, int day)
89 OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */);
93 unsigned firstDayOfWeek(LCID lcid)
95 OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */);
99 String monthLabel(LCID lcid, unsigned index)
101 OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */);
105 String weekDayShortLabel(LCID lcid, unsigned index)
107 OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */);
111 bool isRTL(LCID lcid)
113 OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */);
118 String monthFormat(LCID lcid)
120 OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */);
124 String timeFormat(LCID lcid)
126 OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */);
130 String shortTimeFormat(LCID lcid)
132 OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */);
136 String shortMonthLabel(LCID lcid, unsigned index)
138 OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */);
142 String timeAMPMLabel(LCID lcid, unsigned index)
144 OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */);
148 String decimalSeparator(LCID lcid)
150 OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */);
265 static void testNumberIsReversible(LCID lcid, const char* original, const char* shouldHave = 0)
267 OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */);
275 void testNumbers(LCID lcid)
277 testNumberIsReversible(lcid, "123456789012345678901234567890");
278 testNumberIsReversible(lcid, "-123.456");
279 testNumberIsReversible(lcid, ".456");
280 testNumberIsReversible(lcid, "-0.456");