Searched refs:StepRange (Results 1 - 24 of 24) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/html/
H A DStepRange.h34 class StepRange { class in namespace:WebCore
72 StepRange();
73 StepRange(const StepRange&);
74 StepRange(const Decimal& stepBase, const Decimal& minimum, const Decimal& maximum, const Decimal& step, const StepDescription&);
109 StepRange& operator =(const StepRange&);
H A DStepRange.cpp22 #include "StepRange.h"
32 StepRange::StepRange() function in class:WebCore::StepRange
41 StepRange::StepRange(const StepRange& stepRange) function in class:WebCore::StepRange
51 StepRange::StepRange(const Decimal& stepBase, const Decimal& minimum, const Decimal& maximum, const Decimal& step, const StepDescription& stepDescription) function in class:WebCore::StepRange
65 Decimal StepRange::acceptableError() const
72 Decimal StepRange
[all...]
H A DDateInputType.cpp62 StepRange DateInputType::createStepRange(AnyStepHandling anyStepHandling) const
64 DEPRECATED_DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (dateDefaultStep, dateDefaultStepBase, dateStepScaleFactor, StepRange::ParsedStepValueShouldBeInteger));
69 const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttribute(stepAttr));
70 return StepRange(stepBase, minimum, maximum, step, stepDescription);
H A DDateTimeInputType.cpp63 StepRange DateTimeInputType::createStepRange(AnyStepHandling anyStepHandling) const
65 DEPRECATED_DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (dateTimeDefaultStep, dateTimeDefaultStepBase, dateTimeStepScaleFactor, StepRange::ScaledStepValueShouldBeInteger));
70 const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttribute(stepAttr));
71 return StepRange(stepBase, minimum, maximum, step, stepDescription);
H A DDateTimeLocalInputType.cpp69 StepRange DateTimeLocalInputType::createStepRange(AnyStepHandling anyStepHandling) const
71 DEPRECATED_DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (dateTimeLocalDefaultStep, dateTimeLocalDefaultStepBase, dateTimeLocalStepScaleFactor, StepRange::ScaledStepValueShouldBeInteger));
76 const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttribute(stepAttr));
77 return StepRange(stepBase, minimum, maximum, step, stepDescription);
H A DWeekInputType.cpp57 StepRange WeekInputType::createStepRange(AnyStepHandling anyStepHandling) const
59 DEPRECATED_DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (weekDefaultStep, weekDefaultStepBase, weekStepScaleFactor, StepRange::ParsedStepValueShouldBeInteger));
64 const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttribute(stepAttr));
65 return StepRange(stepBase, minimum, maximum, step, stepDescription);
H A DTimeInputType.cpp78 StepRange TimeInputType::createStepRange(AnyStepHandling anyStepHandling) const
80 DEPRECATED_DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (timeDefaultStep, timeDefaultStepBase, timeStepScaleFactor, StepRange::ScaledStepValueShouldBeInteger));
85 const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttribute(stepAttr));
86 return StepRange(stepBase, minimum, maximum, step, stepDescription);
H A DMonthInputType.cpp91 StepRange MonthInputType::createStepRange(AnyStepHandling anyStepHandling) const
93 DEPRECATED_DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (monthDefaultStep, monthDefaultStepBase, monthStepScaleFactor, StepRange::ParsedStepValueShouldBeInteger));
98 const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttribute(stepAttr));
99 return StepRange(stepBase, minimum, maximum, step, stepDescription);
H A DDateInputType.h46 virtual StepRange createStepRange(AnyStepHandling) const override;
H A DDateTimeInputType.h47 virtual StepRange createStepRange(AnyStepHandling) const override;
H A DDateTimeLocalInputType.h48 virtual StepRange createStepRange(AnyStepHandling) const;
H A DTimeInputType.h47 virtual StepRange createStepRange(AnyStepHandling) const override;
H A DWeekInputType.h46 virtual StepRange createStepRange(AnyStepHandling) const override;
H A DMonthInputType.h50 virtual StepRange createStepRange(AnyStepHandling) const override;
H A DNumberInputType.cpp153 StepRange NumberInputType::createStepRange(AnyStepHandling anyStepHandling) const
155 DEPRECATED_DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (numberDefaultStep, numberDefaultStepBase, numberStepScaleFactor));
161 const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttribute(stepAttr));
162 return StepRange(stepBase, minimum, maximum, step, stepDescription);
H A DNumberInputType.h53 virtual StepRange createStepRange(AnyStepHandling) const override;
H A DRangeInputType.cpp114 StepRange RangeInputType::createStepRange(AnyStepHandling anyStepHandling) const
116 DEPRECATED_DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (rangeDefaultStep, rangeDefaultStepBase, rangeStepScaleFactor));
124 return StepRange(minimum, minimum, maximum, step, stepDescription);
127 const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttribute(stepAttr));
128 return StepRange(minimum, minimum, maximum, step, stepDescription);
204 StepRange stepRange(createStepRange(RejectAny));
343 StepRange stepRange(createStepRange(RejectAny));
H A DInputType.cpp345 StepRange stepRange(createStepRange(RejectAny));
358 StepRange stepRange(createStepRange(RejectAny));
418 StepRange stepRange(createStepRange(RejectAny));
987 StepRange stepRange(createStepRange(anyStepHandling));
1031 StepRange stepRange(createStepRange(RejectAny));
1036 StepRange InputType::createStepRange(AnyStepHandling) const
1039 return StepRange();
1095 StepRange stepRange(createStepRange(AnyIsDefaultStep));
H A DRangeInputType.h51 virtual StepRange createStepRange(AnyStepHandling) const override;
H A DHTMLInputElement.h30 #include "StepRange.h"
94 StepRange createStepRange(AnyStepHandling) const;
H A DInputType.h38 #include "StepRange.h"
168 virtual StepRange createStepRange(AnyStepHandling) const;
H A DHTMLInputElement.cpp336 StepRange HTMLInputElement::createStepRange(AnyStepHandling anyStepHandling) const
1903 StepRange stepRange = createStepRange(RejectAny);
/macosx-10.10/WebCore-7600.1.25/html/shadow/
H A DSliderThumbElement.cpp60 const StepRange stepRange(element->createStepRange(RejectAny));
288 StepRange stepRange(input->createStepRange(RejectAny));
/macosx-10.10/llvmCore-3425.0.34/lib/Analysis/
H A DScalarEvolution.cpp3361 ConstantRange StepRange = getSignedRange(Step);
3364 StartRange.add(MaxBECountRange.multiply(StepRange));
3370 ConstantRange ExtStepRange = StepRange.sextOrTrunc(BitWidth*2+1);
3512 ConstantRange StepRange = getSignedRange(Step);
3515 StartRange.add(MaxBECountRange.multiply(StepRange));
3521 ConstantRange ExtStepRange = StepRange.sextOrTrunc(BitWidth*2+1);

Completed in 164 milliseconds