/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/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 | 57 m_hour = systemTime.wHour; 72 m_hour = localTM.tm_hour;
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
DateComponents.h | 53 , m_hour(0) 75 int hour() const { return m_hour; } 126 // For DateTime type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond. 128 // For DateTimeLocal type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond. 135 // For Time type. Updates m_hour, m_minute, m_second and m_millisecond. 202 int m_hour; member in class:WebCore::DateComponents
|
DateComponents.cpp | 245 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, minute, m_second, m_millisecond)) 251 int hour = m_hour + carry; 264 m_hour = hour; 272 m_hour = hour; 439 m_hour = hour; 460 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond)) 480 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond)) 500 m_hour = static_cast<int>(value / minutesPerHour); 534 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond)) 636 return ((m_hour * minutesPerHour + m_minute) * secondsPerMinute + m_second) * msPerSecond + m_millisecond [all...] |