Searched refs:timeAMPMLabels (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DLocaleICUTest.cpp126 Labels timeAMPMLabels(const char* localeString) function in class:LocaleICUTest
129 return Labels(locale->timeAMPMLabels());
217 TEST_F(LocaleICUTest, timeAMPMLabels)
219 EXPECT_EQ(labels("AM", "PM"), timeAMPMLabels("en_US"));
220 EXPECT_EQ(labels("AM", "PM"), timeAMPMLabels("fr"));
224 EXPECT_EQ(labels(String(jaAM), String(jaPM)), timeAMPMLabels("ja"));
H A DLocaleWinTest.cpp147 return locale->timeAMPMLabels()[index];
251 TEST_F(LocaleWinTest, timeAMPMLabels)
H A DLocaleMacTest.cpp168 return locale->timeAMPMLabels()[index];
335 TEST_F(LocaleMacTest, timeAMPMLabels)
/external/chromium_org/third_party/WebKit/Source/core/platform/text/
H A DPlatformLocale.h105 virtual const Vector<String>& timeAMPMLabels() = 0;
H A DLocaleICU.cpp301 OwnPtr<Vector<String> > timeAMPMLabels = createLabelVector(m_mediumTimeFormat, UDAT_AM_PMS, UCAL_AM, 2); local
302 if (!timeAMPMLabels)
303 timeAMPMLabels = createFallbackAMPMLabels();
304 m_timeAMPMLabels = *timeAMPMLabels;
427 const Vector<String>& LocaleICU::timeAMPMLabels() function in class:WebCore::LocaleICU
H A DLocaleICU.h68 virtual const Vector<String>& timeAMPMLabels() OVERRIDE;
H A DPlatformLocale.cpp129 m_builder.append(m_localizer.timeAMPMLabels()[(m_date.hour() >= 12 ? 1 : 0)]);
/external/chromium_org/third_party/WebKit/Source/core/platform/text/mac/
H A DLocaleMac.h71 virtual const Vector<String>& timeAMPMLabels() OVERRIDE;
H A DLocaleMac.mm290 const Vector<String>& LocaleMac::timeAMPMLabels()
/external/chromium_org/third_party/WebKit/Source/core/platform/text/win/
H A DLocaleWin.h65 virtual const Vector<String>& timeAMPMLabels() OVERRIDE;
H A DLocaleWin.cpp503 const Vector<String>& LocaleWin::timeAMPMLabels() function in class:WebCore::LocaleWin
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeEditElement.cpp247 RefPtr<DateTimeFieldElement> field = DateTimeAMPMFieldElement::create(document, m_editElement, m_parameters.locale.timeAMPMLabels());

Completed in 238 milliseconds