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

  /external/webkit/Source/WebCore/html/
DateComponents.h 51 , m_minute(0)
63 int minute() const { return m_minute; }
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.
180 int m_minute; member in class:WebCore::DateComponents
DateComponents.cpp 246 minute += m_minute;
250 } else if (m_minute < 0) {
251 carry = (59 - m_minute) / 60;
258 m_minute = minute;
274 m_minute = minute;
282 m_minute = minute;
454 m_minute = minute;
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))
515 m_minute = static_cast<int>(fmod(value, minutesPerHour))
    [all...]

Completed in 526 milliseconds