OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shortMonthLabel
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/web/tests/
LocaleICUTest.cpp
108
String
shortMonthLabel
(const char* localeString, unsigned index)
196
EXPECT_STREQ("Jan",
shortMonthLabel
("en_US", 0).utf8().data());
198
EXPECT_STREQ("Dec",
shortMonthLabel
("en_US", 11).utf8().data());
201
EXPECT_STREQ("janv.",
shortMonthLabel
("fr_FR", 0).utf8().data());
203
EXPECT_STREQ("d\xC3\xA9" "c.",
shortMonthLabel
("fr_FR", 11).utf8().data());
206
EXPECT_STREQ("1\xE6\x9C\x88",
shortMonthLabel
("ja_JP", 0).utf8().data());
208
EXPECT_STREQ("12\xE6\x9C\x88",
shortMonthLabel
("ja_JP", 11).utf8().data());
211
EXPECT_STREQ("\xD0\xBC\xD0\xB0\xD1\x80\xD1\x82\xD0\xB0",
shortMonthLabel
("ru_RU", 2).utf8().data());
213
EXPECT_STREQ("\xD0\xBC\xD0\xB0\xD1\x8F",
shortMonthLabel
("ru_RU", 4).utf8().data());
LocaleWinTest.cpp
136
String
shortMonthLabel
(LCID lcid, unsigned index)
238
EXPECT_STREQ("Jan",
shortMonthLabel
(EnglishUS, 0).utf8().data());
239
EXPECT_STREQ("Dec",
shortMonthLabel
(EnglishUS, 11).utf8().data());
240
EXPECT_STREQ("janv.",
shortMonthLabel
(FrenchFR, 0).utf8().data());
241
EXPECT_STREQ("d\xC3\xA9" "c.",
shortMonthLabel
(FrenchFR, 11).utf8().data());
242
EXPECT_STREQ("1",
shortMonthLabel
(JapaneseJP, 0).utf8().data());
243
EXPECT_STREQ("12",
shortMonthLabel
(JapaneseJP, 11).utf8().data());
LocaleMacTest.cpp
145
String
shortMonthLabel
(const String& localeString, unsigned index)
309
EXPECT_STREQ("Jan",
shortMonthLabel
("en_US", 0).utf8().data());
311
EXPECT_STREQ("Dec",
shortMonthLabel
("en_US", 11).utf8().data());
314
EXPECT_STREQ("janv.",
shortMonthLabel
("fr_FR", 0).utf8().data());
316
EXPECT_STREQ("d\xC3\xA9" "c.",
shortMonthLabel
("fr_FR", 11).utf8().data());
319
EXPECT_STREQ("1\xE6\x9C\x88",
shortMonthLabel
("ja_JP", 0).utf8().data());
321
EXPECT_STREQ("12\xE6\x9C\x88",
shortMonthLabel
("ja_JP", 11).utf8().data());
324
EXPECT_STREQ("\xD0\xBC\xD0\xB0\xD1\x80\xD1\x82\xD0\xB0",
shortMonthLabel
("ru_RU", 2).utf8().data());
325
EXPECT_STREQ("\xD0\xBC\xD0\xB0\xD1\x8F",
shortMonthLabel
("ru_RU", 4).utf8().data());
Completed in 48 milliseconds