HomeSort by relevance Sort by last modified time
    Searched refs:m_year (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/html/
DateComponents.cpp 92 int day = dayOfWeek(m_year, 0, 1); // January 1.
93 return day == Thursday || (day == Wednesday && isLeapYear(m_year)) ? 53 : 52;
140 m_year = year;
157 if (day > maxDayOfMonth(m_year, m_month)) {
159 int year = m_year;
176 m_year = year;
180 int year = m_year;
195 m_year = year;
302 if (beforeGregorianStartDate(m_year, month, gregorianStartDay))
324 if (!toInt(src, length, index, 2, day) || day < 1 || day > maxDayOfMonth(m_year, m_month)
    [all...]
DateComponents.h 56 , m_year(0)
68 int fullYear() const { return m_year; }
113 // For Date type. Updates m_year, m_month and m_monthDay.
115 // For DateTime type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
117 // For DateTimeLocal type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
119 // For Month type. Updates m_year and m_month.
121 // For Week type. Updates m_year and m_week.
127 // Another initializer for Month type. Updates m_year and m_month.
172 int m_year; // 1582 - member in class:WebCore::DateComponents

Completed in 2180 milliseconds