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 32 readonly attribute boolean stepMismatch;
ValidityState.h 58 bool stepMismatch() const;
FormAssociatedElement.h 78 // stepMismatch, tooLong and valueMissing must call willValidate method.
83 virtual bool stepMismatch() const;
FormAssociatedElement.cpp 230 bool FormAssociatedElement::stepMismatch() const
247 bool someError = typeMismatch() || stepMismatch() || rangeUnderflow() || rangeOverflow()
HTMLInputElement.h 62 virtual bool stepMismatch() const OVERRIDE FINAL;
HTMLInputElement.cpp 206 && !m_inputType->stepMismatch(value)
288 bool HTMLInputElement::stepMismatch() const
290 return willValidate() && m_inputType->stepMismatch(value());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
StepRange.cpp 80 return stepMismatch(currentValue) ? newValue : roundByStep(newValue, m_stepBase);
143 bool StepRange::stepMismatch(const Decimal& valueForCheck) const
StepRange.h 82 bool stepMismatch(const Decimal&) const;
InputType.cpp 317 bool InputType::stepMismatch(const String& value) const
326 return createStepRange(RejectAny).stepMismatch(numericValue);
393 if (stepRange.stepMismatch(numericValue)) {
803 if (!equalIgnoringCase(stepString, "any") && stepRange.stepMismatch(current)) {
InputType.h 139 bool stepMismatch(const String&) const;

Completed in 136 milliseconds