Searched refs:m_monthLabels (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DLocaleNone.cpp55 Vector<String> m_monthLabels; member in class:WebCore::LocaleNone
75 if (!m_monthLabels.isEmpty())
76 return m_monthLabels;
77 m_monthLabels.reserveCapacity(WTF_ARRAY_LENGTH(WTF::monthFullName));
79 m_monthLabels.append(WTF::monthFullName[i]);
80 return m_monthLabels;
H A DLocaleICU.cpp210 if (m_monthLabels)
211 return *m_monthLabels;
213 m_monthLabels = createLabelVector(m_shortDateFormat, UDAT_MONTHS, UCAL_JANUARY, 12);
214 if (m_monthLabels)
215 return *m_monthLabels;
217 m_monthLabels = createFallbackMonthLabels();
218 return *m_monthLabels;
H A DLocaleICU.h91 OwnPtr<Vector<String> > m_monthLabels; member in class:WebCore::LocaleICU
/macosx-10.9.5/WebCore-7537.78.1/platform/text/mac/
H A DLocaleMac.mm120 if (!m_monthLabels.isEmpty())
121 return m_monthLabels;
122 m_monthLabels.reserveCapacity(12);
126 m_monthLabels.append(String([array objectAtIndex:i]));
127 return m_monthLabels;
130 m_monthLabels.append(WTF::monthFullName[i]);
131 return m_monthLabels;
H A DLocaleMac.h77 Vector<String> m_monthLabels; member in class:WebCore::LocaleMac
/macosx-10.9.5/WebCore-7537.78.1/platform/text/win/
H A DLocaleWin.h78 Vector<String> m_monthLabels; member in class:WebCore::LocaleWin

Completed in 214 milliseconds