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

  /external/chromium_org/third_party/WebKit/Source/platform/
DateComponents.cpp 86 int day = dayOfWeek(m_year, 0, 1); // January 1.
87 return day == Thursday || (day == Wednesday && isLeapYear(m_year)) ? maximumWeekNumber : maximumWeekNumber - 1;
133 m_year = year;
179 if (day > maxDayOfMonth(m_year, m_month)) {
181 int year = m_year;
198 m_year = year;
202 int year = m_year;
217 m_year = year;
220 if (!withinHTMLDateLimits(m_year, m_month, day))
229 // This function is used to adjust timezone offset. So m_year, m_month
    [all...]
DateComponents.h 56 , m_year(0)
78 int fullYear() const { return m_year; }
124 // For Date type. Updates m_year, m_month and m_monthDay.
126 // For DateTime type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
128 // For DateTimeLocal type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
130 // For Month type. Updates m_year and m_month.
132 // For Week type. Updates m_year and m_week.
138 // Another initializer for Month type. Updates m_year and m_month.
205 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());
  /external/chromium_org/third_party/WebKit/Source/wtf/
GregorianDateTime.h 39 : m_year(0)
52 inline int year() const { return m_year; }
63 inline void setYear(int year) { m_year = year; }
81 ret.tm_year = m_year - 1900;
100 m_year = other.m_year;
113 int m_year; member in class:WTF::GregorianDateTime
GregorianDateTime.cpp 52 m_year = systemTime.wYear;
55 m_yearDay = dayInYear(m_year, m_month, m_monthDay);
67 m_year = localTM.tm_year + 1900;

Completed in 52 milliseconds