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

  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
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/platform/
DateComponents.h 53 , m_hour(0)
75 int hour() const { return m_hour; }
127 // For DateTime type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
129 // For DateTimeLocal type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
136 // For Time type. Updates m_hour, m_minute, m_second and m_millisecond.
203 int m_hour; member in class:WebCore::DateComponents
DateComponents.cpp 250 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, minute, m_second, m_millisecond))
256 int hour = m_hour + carry;
269 m_hour = hour;
277 m_hour = hour;
444 m_hour = hour;
465 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond))
485 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond))
505 m_hour = static_cast<int>(value / minutesPerHour);
539 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond))
641 return ((m_hour * minutesPerHour + m_minute) * secondsPerMinute + m_second) * msPerSecond + m_millisecond
    [all...]

Completed in 50 milliseconds