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

  /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
  /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
  /external/chromium_org/third_party/WebKit/Source/platform/
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

Completed in 191 milliseconds