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

/external/chromium_org/third_party/WebKit/Source/platform/
H A DDecimalTest.cpp104 protected: Decimal stepUp(const String& minimum, const String& maximum, const String& step, const String& valueString, int numberOfStepTimes) function in class:DecimalTest
889 EXPECT_DECIMAL_STREQ("90", stepUp("0", "99", "10", "89", 1));
890 EXPECT_DECIMAL_STREQ("1", stepUp("0", "1", "0.33333333333333333", "0", 3)); // step=1/3
891 EXPECT_DECIMAL_STREQ("0.01", stepUp("0", "0.01", "0.0033333333333333333", "0", 3)); // step=1/300
892 EXPECT_DECIMAL_STREQ("1", stepUp("0", "1", "0.003921568627450980", "0", 255)); // step=1/255
893 EXPECT_DECIMAL_STREQ("1", stepUp("0", "1", "0.1", "0", 10));
898 EXPECT_DECIMAL_STREQ("5.015", stepUp("0", "100", "0.005", "5.005", 2));
899 EXPECT_DECIMAL_STREQ("5.06", stepUp("0", "100", "0.005", "5.005", 11));
900 EXPECT_DECIMAL_STREQ("5.065", stepUp("0", "100", "0.005", "5.005", 12));
902 EXPECT_DECIMAL_STREQ("5.015", stepUp("
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeNumericFieldElement.cpp191 void DateTimeNumericFieldElement::stepUp() function in class:blink::DateTimeNumericFieldElement
H A DDateTimeEditElement.cpp786 void DateTimeEditElement::stepUp() function in class:blink::DateTimeEditElement
789 field->stepUp();
/external/chromium_org/third_party/skia/tests/
H A DPathOpsAngleIdeas.cpp298 bool stepUp = orderTRange(reporter, quad1, quad2, r, &tRange); local
299 if (stepUp) {
319 stepUp = false;
331 r += stepUp ? rStep : -rStep;
/external/skia/tests/
H A DPathOpsAngleIdeas.cpp298 bool stepUp = orderTRange(reporter, quad1, quad2, r, &tRange); local
299 if (stepUp) {
319 stepUp = false;
331 r += stepUp ? rStep : -rStep;
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DInputType.cpp798 void InputType::stepUp(int n, ExceptionState& exceptionState) function in class:blink::InputType
810 // The only difference from stepUp()/stepDown() is the extra treatment
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLInputElement.cpp298 void HTMLInputElement::stepUp(int n, ExceptionState& exceptionState) function in class:blink::HTMLInputElement
300 m_inputType->stepUp(n, exceptionState);
305 m_inputType->stepUp(-n, exceptionState);

Completed in 6849 milliseconds