/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
StepRange.h | 33 class StepRange { 71 StepRange(); 72 StepRange(const StepRange&); 73 StepRange(const Decimal& stepBase, const Decimal& minimum, const Decimal& maximum, const Decimal& step, const StepDescription&); 106 StepRange& operator =(const StepRange&);
|
StepRange.cpp | 22 #include "core/html/forms/StepRange.h" 34 StepRange::StepRange() 43 StepRange::StepRange(const StepRange& stepRange) 44 : m_maximum(stepRange.m_maximum) 45 , m_minimum(stepRange.m_minimum) 46 , m_step(stepRange.m_step [all...] |
WeekInputType.cpp | 66 StepRange WeekInputType::createStepRange(AnyStepHandling anyStepHandling) const 68 DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (weekDefaultStep, weekDefaultStepBase, weekStepScaleFactor, StepRange::ParsedStepValueShouldBeInteger));
|
DateInputType.cpp | 72 StepRange DateInputType::createStepRange(AnyStepHandling anyStepHandling) const 74 DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (dateDefaultStep, dateDefaultStepBase, dateStepScaleFactor, StepRange::ParsedStepValueShouldBeInteger));
|
MonthInputType.cpp | 96 StepRange MonthInputType::createStepRange(AnyStepHandling anyStepHandling) const 98 DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (monthDefaultStep, monthDefaultStepBase, monthStepScaleFactor, StepRange::ParsedStepValueShouldBeInteger));
|
DateInputType.h | 55 virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE;
|
DateTimeLocalInputType.h | 57 virtual StepRange createStepRange(AnyStepHandling) const;
|
MonthInputType.h | 57 virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE;
|
TimeInputType.h | 54 virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE;
|
WeekInputType.h | 53 virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE;
|
DateTimeLocalInputType.cpp | 80 StepRange DateTimeLocalInputType::createStepRange(AnyStepHandling anyStepHandling) const 82 DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (dateTimeLocalDefaultStep, dateTimeLocalDefaultStepBase, dateTimeLocalStepScaleFactor, StepRange::ScaledStepValueShouldBeInteger));
|
InputType.cpp | 295 StepRange stepRange(createStepRange(RejectAny)); 296 return numericValue >= stepRange.minimum() && numericValue <= stepRange.maximum(); 308 StepRange stepRange(createStepRange(RejectAny)); 309 return numericValue < stepRange.minimum() || numericValue > stepRange.maximum(); 380 StepRange stepRange(createStepRange(RejectAny)) [all...] |
InputType.h | 39 #include "core/html/forms/StepRange.h" 124 virtual StepRange createStepRange(AnyStepHandling) const; 225 StepRange createStepRange(AnyStepHandling, const Decimal& stepBaseDefault, const Decimal& minimumDefault, const Decimal& maximumDefault, const StepRange::StepDescription&) const;
|
TimeInputType.cpp | 83 StepRange TimeInputType::createStepRange(AnyStepHandling anyStepHandling) const 85 DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (timeDefaultStep, timeDefaultStepBase, timeStepScaleFactor, StepRange::ScaledStepValueShouldBeInteger));
|
RangeInputType.cpp | 51 #include "core/html/forms/StepRange.h" 118 StepRange RangeInputType::createStepRange(AnyStepHandling anyStepHandling) const 120 DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (rangeDefaultStep, rangeDefaultStepBase, rangeStepScaleFactor)); 126 const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttribute(stepAttr)); 127 return StepRange(stepBase, minimum, maximum, step, stepDescription); 185 StepRange stepRange(createStepRange(RejectAny)); 190 const Decimal step = equalIgnoringCase(element().fastGetAttribute(stepAttr), "any") ? (stepRange.maximum() - stepRange.minimum()) / 100 : stepRange.step() [all...] |
NumberInputType.h | 56 virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE;
|
RangeInputType.h | 53 virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE;
|
NumberInputType.cpp | 144 StepRange NumberInputType::createStepRange(AnyStepHandling anyStepHandling) const 146 DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (numberDefaultStep, numberDefaultStepBase, numberStepScaleFactor));
|
BaseMultipleFieldsDateAndTimeInputType.cpp | 523 setMillisecondToDateComponents(layoutParameters.stepRange.minimum().toDouble(), &date); 586 StepRange stepRange = createStepRange(AnyIsDefaultStep); 588 || !stepRange.minimum().remainder(static_cast<int>(msPerMinute)).isZero() 589 || !stepRange.step().remainder(static_cast<int>(msPerMinute)).isZero();
|
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
DateTimeEditElement.h | 30 #include "core/html/forms/StepRange.h" 40 class StepRange; 70 const StepRange stepRange; 77 LayoutParameters(Locale& locale, const StepRange& stepRange) 79 , stepRange(stepRange)
|
SliderThumbElement.cpp | 40 #include "core/html/forms/StepRange.h" 151 StepRange stepRange(input->createStepRange(RejectAny)); 152 Decimal value = stepRange.clampValue(stepRange.valueFromProportion(fraction)); 156 double closestFraction = stepRange.proportionFromValue(closest).toDouble();
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderSliderContainer.cpp | 53 const StepRange stepRange(element->createStepRange(RejectAny)); 54 const Decimal oldValue = parseToDecimalForNumberType(element->value(), stepRange.defaultValue()); 55 return stepRange.proportionFromValue(stepRange.clampValue(oldValue));
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLInputElement.h | 29 #include "core/html/forms/StepRange.h" 78 StepRange createStepRange(AnyStepHandling) const;
|
HTMLInputElement.cpp | 288 StepRange HTMLInputElement::createStepRange(AnyStepHandling anyStepHandling) const [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/animation/ |
TimingFunctionTest.cpp | 238 TEST_F(TimingFunctionTest, StepRange)
|