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

  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
DateInputType.h 64 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const OVERRIDE;
DateTimeLocalInputType.h 65 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const;
MonthInputType.h 66 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const OVERRIDE;
TimeInputType.h 63 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const OVERRIDE;
WeekInputType.h 61 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const OVERRIDE;
DateTimeLocalInputType.cpp 106 || !dateTimeFieldsState.hasHour() || !dateTimeFieldsState.hasMinute() || !dateTimeFieldsState.hasAMPM())
156 bool DateTimeLocalInputType::isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const
158 return hasYear && hasMonth && hasDay && hasAMPM && hasHour && hasMinute;
TimeInputType.cpp 119 if (!dateTimeFieldsState.hasHour() || !dateTimeFieldsState.hasMinute() || !dateTimeFieldsState.hasAMPM())
152 bool TimeInputType::isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const
154 return hasHour && hasMinute && hasAMPM;
DateTimeFieldsState.cpp 72 if (!hasHour() || !hasAMPM())
103 if (hasAMPM())
DateTimeFieldsState.h 67 bool hasAMPM() const { return m_ampm != AMPMValueEmpty; }
WeekInputType.cpp 106 bool WeekInputType::isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const
BaseMultipleFieldsDateAndTimeInputType.h 55 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const = 0;
DateInputType.cpp 122 bool DateInputType::isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const
MonthInputType.cpp 151 bool MonthInputType::isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeFieldElements.cpp 73 if (dateTimeFieldsState.hasAMPM())

Completed in 212 milliseconds