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 84 return dayOfWeek(m_year, m_month, m_monthDay);
89 int day = dayOfWeek(m_year, 0, 1); // January 1.
90 return day == Thursday || (day == Wednesday && isLeapYear(m_year)) ? maximumWeekNumber : maximumWeekNumber - 1;
136 m_year = year;
182 if (day > maxDayOfMonth(m_year, m_month)) {
184 int year = m_year;
201 m_year = year;
205 int year = m_year;
220 m_year = year;
223 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.
141 // Another initializer for Week type. Updates m_year and m_week.
208 int m_year; // 1582 member in class:blink::DateComponents
    [all...]
  /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:blink::DateTimeFieldsState
DateTimeFieldsState.cpp 58 : m_year(emptyValue)
95 state.append(hasYear() ? String::number(m_year) : emptyString());

Completed in 603 milliseconds