Searched refs:hasHour (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DDateInputType.h64 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const;
H A DTimeInputType.h64 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const;
H A DWeekInputType.h62 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const;
H A DDateTimeLocalInputType.cpp111 || !dateTimeFieldsState.hasHour() || !dateTimeFieldsState.hasMinute() || !dateTimeFieldsState.hasAMPM())
161 bool DateTimeLocalInputType::isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const argument
163 return hasYear && hasMonth && hasDay && hasAMPM && hasHour && hasMinute;
H A DTimeInputType.cpp130 if (!dateTimeFieldsState.hasHour() || !dateTimeFieldsState.hasMinute() || !dateTimeFieldsState.hasAMPM())
163 bool TimeInputType::isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const argument
165 return hasHour && hasMinute && hasAMPM;
H A DDateTimeFieldsState.cpp72 if (!hasHour() || !hasAMPM())
98 state.append(hasHour() ? String::number(m_hour) : emptyString());
H A DDateTimeFieldsState.h69 bool hasHour() const { return m_hour != emptyValue; } function in class:WebCore::DateTimeFieldsState
H A DDateTimeLocalInputType.h66 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const;
H A DMonthInputType.h66 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const;
H A DWeekInputType.cpp111 bool WeekInputType::isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const argument
H A DDateInputType.cpp118 bool DateInputType::isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const argument
H A DBaseMultipleFieldsDateAndTimeInputType.h53 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const = 0;
H A DMonthInputType.cpp157 bool MonthInputType::isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const argument
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeFieldElements.cpp140 if (!dateTimeFieldsState.hasHour()) {

Completed in 129 milliseconds