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

  /external/webkit/Source/WebCore/html/
DateComponents.h 52 , m_hour(0)
64 int hour() const { return m_hour; }
114 // For DateTime type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
116 // For DateTimeLocal type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
123 // For Time type. Updates m_hour, m_minute, m_second and m_millisecond.
181 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;
453 m_hour = hour;
475 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond))
496 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond))
516 m_hour = static_cast<int>(value / minutesPerHour);
550 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond))
652 return ((m_hour * minutesPerHour + m_minute) * secondsPerMinute + m_second) * msPerSecond + m_millisecond
    [all...]

Completed in 15 milliseconds