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

  /external/webkit/Source/WebCore/html/
DateComponents.cpp 97 int day = dayOfWeek(m_year, 0, 1); // January 1.
98 return day == Thursday || (day == Wednesday && isLeapYear(m_year)) ? 53 : 52;
144 m_year = year;
190 if (day > maxDayOfMonth(m_year, m_month)) {
192 int year = m_year;
209 m_year = year;
213 int year = m_year;
228 m_year = year;
231 if (!withinHTMLDateLimits(m_year, m_month, day))
240 // This function is used to adjust timezone offset. So m_year, m_month
    [all...]
DateComponents.h 55 , m_year(0)
67 int fullYear() const { return m_year; }
112 // For Date type. Updates m_year, m_month and m_monthDay.
114 // For DateTime type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
116 // For DateTimeLocal type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
118 // For Month type. Updates m_year and m_month.
120 // For Week type. Updates m_year and m_week.
126 // Another initializer for Month type. Updates m_year and m_month.
184 int m_year; // 1582 - member in class:WebCore::DateComponents

Completed in 21 milliseconds