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

  /external/chromium_org/third_party/WebKit/Source/platform/
DateComponents.cpp 86 return dayOfWeek(m_year, m_month, m_monthDay);
91 int day = dayOfWeek(m_year, 0, 1); // January 1.
92 return day == Thursday || (day == Wednesday && isLeapYear(m_year)) ? maximumWeekNumber : maximumWeekNumber - 1;
138 m_year = year;
184 if (day > maxDayOfMonth(m_year, m_month)) {
186 int year = m_year;
203 m_year = year;
207 int year = m_year;
222 m_year = year;
225 if (!withinHTMLDateLimits(m_year, m_month, day)
    [all...]
DateComponents.h 56 , m_year(0)
79 int fullYear() const { return m_year; }
125 // For Date type. Updates m_year, m_month and m_monthDay.
127 // For DateTime type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
129 // For DateTimeLocal type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
131 // For Month type. Updates m_year and m_month.
133 // For Week type. Updates m_year and m_week.
139 // Another initializer for Month type. Updates m_year and m_month.
206 int m_year; // 1582 - member in class:WebCore::DateComponents
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
DateTimeFieldsState.h 65 unsigned year() const { return m_year; }
75 bool hasYear() const { return m_year != emptyValue; }
85 void setYear(unsigned year) { m_year = year; }
88 unsigned m_year; member in class:WebCore::DateTimeFieldsState
DateTimeFieldsState.cpp 58 : m_year(emptyValue)
95 state.append(hasYear() ? String::number(m_year) : emptyString());

Completed in 76 milliseconds