Searched refs:stepMismatch (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DValidityState.cpp64 bool ValidityState::stepMismatch() const function in class:blink::ValidityState
66 return m_control->stepMismatch();
H A DValidityState.idl32 readonly attribute boolean stepMismatch;
H A DValidityState.h59 bool stepMismatch() const;
H A DFormAssociatedElement.h78 // stepMismatch, tooLong and valueMissing must call willValidate method.
83 virtual bool stepMismatch() const;
H A DFormAssociatedElement.cpp232 bool FormAssociatedElement::stepMismatch() const function in class:blink::FormAssociatedElement
249 bool someError = typeMismatch() || stepMismatch() || rangeUnderflow() || rangeOverflow()
H A DHTMLInputElement.cpp209 && !m_inputType->stepMismatch(value)
278 bool HTMLInputElement::stepMismatch() const function in class:blink::HTMLInputElement
280 return willValidate() && m_inputType->stepMismatch(value());
H A DHTMLInputElement.h64 virtual bool stepMismatch() const OVERRIDE FINAL;
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DStepRange.cpp80 return stepMismatch(currentValue) ? newValue : roundByStep(newValue, m_stepBase);
143 bool StepRange::stepMismatch(const Decimal& valueForCheck) const function in class:blink::StepRange
H A DStepRange.h82 bool stepMismatch(const Decimal&) const;
H A DInputType.cpp312 bool InputType::stepMismatch(const String& value) const function in class:blink::InputType
321 return createStepRange(RejectAny).stepMismatch(numericValue);
388 if (stepRange.stepMismatch(numericValue)) {
735 if (!equalIgnoringCase(stepString, "any") && stepRange.stepMismatch(current)) {
H A DInputType.h122 bool stepMismatch(const String&) const;

Completed in 233 milliseconds