Searched defs:rangeUnderflow (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DValidityState.cpp73 if (rangeUnderflow()) {
167 bool ValidityState::rangeUnderflow() const function in class:WebCore::ValidityState
176 return input->rangeUnderflow(input->value());
211 bool someError = typeMismatch() || stepMismatch() || rangeUnderflow() || rangeOverflow()
H A DBaseDateAndTimeInputType.cpp83 bool BaseDateAndTimeInputType::rangeUnderflow(const String& value) const function in class:WebCore::BaseDateAndTimeInputType
H A DNumberInputType.cpp95 bool NumberInputType::rangeUnderflow(const String& value) const function in class:WebCore::NumberInputType
H A DRangeInputType.cpp93 bool RangeInputType::rangeUnderflow(const String& value) const function in class:WebCore::RangeInputType
H A DInputType.cpp218 bool InputType::rangeUnderflow(const String&) const function in class:WebCore::InputType
H A DHTMLInputElement.cpp176 && !rangeUnderflow(value)
218 bool HTMLInputElement::rangeUnderflow(const String& value) const function in class:WebCore::HTMLInputElement
220 return m_inputType->rangeUnderflow(value);
1214 return m_inputType->supportsRangeLimitation() && !rangeUnderflow(value()) && !rangeOverflow(value());
1219 return m_inputType->supportsRangeLimitation() && (rangeUnderflow(value()) || rangeOverflow(value()));

Completed in 525 milliseconds