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

  /external/chromium_org/third_party/WebKit/Source/core/html/
ValidityState.cpp 64 bool ValidityState::stepMismatch() const
66 return m_control->stepMismatch();
ValidityState.idl 31 readonly attribute boolean stepMismatch;
ValidityState.h 54 bool stepMismatch() const;
FormAssociatedElement.h 76 // stepMismatch, tooLong and valueMissing must call willValidate method.
81 virtual bool stepMismatch() const;
FormAssociatedElement.cpp 214 bool FormAssociatedElement::stepMismatch() const
231 bool someError = typeMismatch() || stepMismatch() || rangeUnderflow() || rangeOverflow()
HTMLInputElement.h 62 virtual bool stepMismatch() const OVERRIDE;
HTMLInputElement.cpp 202 && !m_inputType->stepMismatch(value)
284 bool HTMLInputElement::stepMismatch() const
286 return willValidate() && m_inputType->stepMismatch(value());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
StepRange.cpp 82 return stepMismatch(currentValue) ? newValue : roundByStep(newValue, m_stepBase);
145 bool StepRange::stepMismatch(const Decimal& valueForCheck) const
StepRange.h 84 bool stepMismatch(const Decimal&) const;
InputType.cpp 332 bool InputType::stepMismatch(const String& value) const
341 return createStepRange(RejectAny).stepMismatch(numericValue);
408 if (stepRange.stepMismatch(numericValue)) {
953 if (stepMismatch(element().value())) {
InputType.h 143 bool stepMismatch(const String&) const;

Completed in 475 milliseconds