Searched refs:rangeOverflow (Results 1 - 13 of 13) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DValidityState.idl31 readonly attribute boolean rangeOverflow;
H A DValidityState.h52 bool rangeOverflow() const;
H A DBaseDateAndTimeInputType.h56 virtual bool rangeOverflow(const String&) const;
H A DValidityState.cpp80 if (rangeOverflow()) {
179 bool ValidityState::rangeOverflow() const function in class:WebCore::ValidityState
188 return input->rangeOverflow(input->value());
211 bool someError = typeMismatch() || stepMismatch() || rangeUnderflow() || rangeOverflow()
H A DNumberInputType.h50 virtual bool rangeOverflow(const String&) const;
H A DRangeInputType.h52 virtual bool rangeOverflow(const String&) const;
H A DBaseDateAndTimeInputType.cpp90 bool BaseDateAndTimeInputType::rangeOverflow(const String& value) const function in class:WebCore::BaseDateAndTimeInputType
H A DNumberInputType.cpp102 bool NumberInputType::rangeOverflow(const String& value) const function in class:WebCore::NumberInputType
H A DHTMLInputElement.h56 bool rangeOverflow(const String&) const;
H A DInputType.h139 virtual bool rangeOverflow(const String&) const;
H A DRangeInputType.cpp100 bool RangeInputType::rangeOverflow(const String& value) const function in class:WebCore::RangeInputType
H A DHTMLInputElement.cpp177 && !rangeOverflow(value)
223 bool HTMLInputElement::rangeOverflow(const String& value) const function in class:WebCore::HTMLInputElement
225 return m_inputType->rangeOverflow(value);
1214 return m_inputType->supportsRangeLimitation() && !rangeUnderflow(value()) && !rangeOverflow(value());
1219 return m_inputType->supportsRangeLimitation() && (rangeUnderflow(value()) || rangeOverflow(value()));
H A DInputType.cpp223 bool InputType::rangeOverflow(const String&) const function in class:WebCore::InputType

Completed in 183 milliseconds