Home
last modified time | relevance | path

Searched refs:m_shortMonthLabels (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/text/
DLocaleWin.cpp196 if (!m_shortMonthLabels.isEmpty()) in ensureShortMonthLabels()
212 m_shortMonthLabels.reserveCapacity(WTF_ARRAY_LENGTH(types)); in ensureShortMonthLabels()
214 m_shortMonthLabels.append(getLocaleInfoString(types[i])); in ensureShortMonthLabels()
215 if (m_shortMonthLabels.last().isEmpty()) { in ensureShortMonthLabels()
216 m_shortMonthLabels.shrink(0); in ensureShortMonthLabels()
217 m_shortMonthLabels.reserveCapacity(WTF_ARRAY_LENGTH(WTF::monthName)); in ensureShortMonthLabels()
219 m_shortMonthLabels.append(WTF::monthName[m]); in ensureShortMonthLabels()
491 return m_shortMonthLabels; in shortMonthLabels()
DLocaleICU.cpp379 if (!m_shortMonthLabels.isEmpty()) in shortMonthLabels()
380 return m_shortMonthLabels; in shortMonthLabels()
383 m_shortMonthLabels = *labels; in shortMonthLabels()
384 return m_shortMonthLabels; in shortMonthLabels()
387 m_shortMonthLabels.reserveCapacity(WTF_ARRAY_LENGTH(WTF::monthName)); in shortMonthLabels()
389 m_shortMonthLabels.append(WTF::monthName[i]); in shortMonthLabels()
390 return m_shortMonthLabels; in shortMonthLabels()
DLocaleMac.mm243 if (!m_shortMonthLabels.isEmpty())
244 return m_shortMonthLabels;
245 m_shortMonthLabels.reserveCapacity(12);
249 m_shortMonthLabels.append([array objectAtIndex:i]);
250 return m_shortMonthLabels;
253 m_shortMonthLabels.append(WTF::monthName[i]);
254 return m_shortMonthLabels;
DLocaleWin.h78 Vector<String> m_shortMonthLabels; variable
DLocaleMac.h92 Vector<String> m_shortMonthLabels; variable
DLocaleICU.h103 Vector<String> m_shortMonthLabels; variable