Home
last modified time | relevance | path

Searched refs:stepDescription (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DStepRange.cpp55 …imal& minimum, const Decimal& maximum, const Decimal& step, const StepDescription& stepDescription) in StepRange() argument
60 , m_stepDescription(stepDescription) in StepRange()
98 …e::parseStep(AnyStepHandling anyStepHandling, const StepDescription& stepDescription, const String… in parseStep() argument
101 return stepDescription.defaultValue(); in parseStep()
108 return stepDescription.defaultValue(); in parseStep()
116 return stepDescription.defaultValue(); in parseStep()
118 switch (stepDescription.stepValueShouldBe) { in parseStep()
120 step *= stepDescription.stepScaleFactor; in parseStep()
125 step *= stepDescription.stepScaleFactor; in parseStep()
129 step *= stepDescription.stepScaleFactor; in parseStep()
DWeekInputType.cpp68 …DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (weekDefaultStep, weekDefau… in createStepRange()
70 …teComponents::minimumWeek()), Decimal::fromDouble(DateComponents::maximumWeek()), stepDescription); in createStepRange()
DDateInputType.cpp73 …DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (dateDefaultStep, dateDefau… in createStepRange()
75 …teComponents::minimumDate()), Decimal::fromDouble(DateComponents::maximumDate()), stepDescription); in createStepRange()
DRangeInputType.cpp125 …DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (rangeDefaultStep, rangeDef… in createStepRange()
133 return StepRange(minimum, minimum, maximum, step, stepDescription); in createStepRange()
136 …const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttri… in createStepRange()
137 return StepRange(minimum, minimum, maximum, step, stepDescription); in createStepRange()
DMonthInputType.cpp104 …DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (monthDefaultStep, monthDef… in createStepRange()
106 …Components::minimumMonth()), Decimal::fromDouble(DateComponents::maximumMonth()), stepDescription); in createStepRange()
DDateTimeLocalInputType.cpp82 …DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (dateTimeLocalDefaultStep, … in createStepRange()
84 …ents::minimumDateTime()), Decimal::fromDouble(DateComponents::maximumDateTime()), stepDescription); in createStepRange()
DTimeInputType.cpp91 …DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (timeDefaultStep, timeDefau… in createStepRange()
93 …teComponents::minimumTime()), Decimal::fromDouble(DateComponents::maximumTime()), stepDescription); in createStepRange()
DNumberInputType.cpp159 …DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (numberDefaultStep, numberD… in createStepRange()
163 …ype::createStepRange(anyStepHandling, numberDefaultStepBase, -floatMax, floatMax, stepDescription); in createStepRange()
DInputType.cpp996 …mumDefault, const Decimal& maximumDefault, const StepRange::StepDescription& stepDescription) const in createStepRange()
1001 …const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttri… in createStepRange()
1002 return StepRange(stepBase, minimum, maximum, step, stepDescription); in createStepRange()