Searched defs:stepBase (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/public/web/
H A DWebDateTimeChooserParams.h64 double stepBase; member in struct:blink::WebDateTimeChooserParams
74 , stepBase(0)
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DDateTimeChooser.h62 double stepBase; member in struct:blink::DateTimeChooserParameters
H A DStepRange.cpp53 StepRange::StepRange(const Decimal& stepBase, const Decimal& minimum, const Decimal& maximum, const Decimal& step, const StepDescription& stepDescription) argument
57 , m_stepBase(stepBase.isFinite() ? stepBase : 1)
88 // Rounds inRangeValue to stepBase + N * step.
H A DStepRange.h73 StepRange(const Decimal& stepBase, const Decimal& minimum, const Decimal& maximum, const Decimal& step, const StepDescription&);
81 Decimal stepBase() const { return m_stepBase; } function in class:blink::StepRange
H A DRangeInputType.cpp122 const Decimal stepBase = findStepBase(rangeDefaultStepBase); local
127 return StepRange(stepBase, minimum, maximum, step, stepDescription);
H A DInputType.cpp746 const Decimal base = stepRange.stepBase();
890 Decimal stepBase = parseToNumber(element().fastGetAttribute(minAttr), Decimal::nan()); local
891 if (!stepBase.isFinite())
892 stepBase = parseToNumber(element().fastGetAttribute(valueAttr), defaultValue);
893 return stepBase;
898 const Decimal stepBase = findStepBase(stepBaseDefault); local
902 return StepRange(stepBase, minimum, maximum, step, stepDescription);
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeNumericFieldElement.h49 Step(int step = 1, int stepBase = 0) : step(step), stepBase(stepBase) { }
51 int stepBase; member in struct:blink::DateTimeNumericFieldElement::Step

Completed in 116 milliseconds