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

  /external/webkit/WebCore/html/
DateComponents.h 52 , m_minute(0)
64 int minute() const { return m_minute; }
115 // For DateTime type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
117 // For DateTimeLocal type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
124 // For Time type. Updates m_hour, m_minute, m_second and m_millisecond.
168 int m_minute; member in class:WebCore::DateComponents
DateComponents.cpp 206 minute += m_minute;
210 } else if (m_minute < 0) {
211 carry = (59 - m_minute) / 60;
216 m_minute = minute;
230 m_minute = minute;
236 m_minute = minute;
411 m_minute = minute;
468 m_minute = static_cast<int>(fmod(value, minutesPerHour));
605 return ((m_hour * minutesPerHour + m_minute) * secondsPerMinute + m_second) * msPerSecond + m_millisecond;
649 return String::format("%02d:%02d", m_hour, m_minute);
    [all...]

Completed in 129 milliseconds