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

  /external/chromium_org/third_party/WebKit/Source/wtf/
GregorianDateTime.h 44 , m_hour(0)
57 inline int hour() const { return m_hour; }
68 inline void setHour(int hour) { m_hour = hour; }
86 ret.tm_hour = m_hour;
105 m_hour = other.m_hour;
118 int m_hour; member in class:WTF::GregorianDateTime
GregorianDateTime.cpp 59 m_hour = systemTime.wHour;
74 m_hour = localTM.tm_hour;
  /external/chromium_org/third_party/WebKit/Source/core/html/
DateTimeFieldsState.h 58 unsigned hour() const { return m_hour; }
69 bool hasHour() const { return m_hour != emptyValue; }
79 void setHour(unsigned hour12) { m_hour = hour12; }
91 unsigned m_hour; // 1 to 12. member in class:WebCore::DateTimeFieldsState
DateTimeFieldsState.cpp 61 , m_hour(emptyValue)
74 return (m_hour % 12) + (m_ampm == AMPMValuePM ? 12 : 0);
98 state.append(hasHour() ? String::number(m_hour) : emptyString());
  /external/chromium_org/third_party/WebKit/Source/core/platform/
DateComponents.h 52 , m_hour(0)
74 int hour() const { return m_hour; }
125 // For DateTime type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
127 // For DateTimeLocal type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
134 // For Time type. Updates m_hour, m_minute, m_second and m_millisecond.
201 int m_hour; member in class:WebCore::DateComponents
DateComponents.cpp 256 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, minute, m_second, m_millisecond))
262 int hour = m_hour + carry;
275 m_hour = hour;
283 m_hour = hour;
450 m_hour = hour;
471 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond))
491 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond))
511 m_hour = static_cast<int>(value / minutesPerHour);
545 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond))
647 return ((m_hour * minutesPerHour + m_minute) * secondsPerMinute + m_second) * msPerSecond + m_millisecond
    [all...]

Completed in 221 milliseconds