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

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLInputElement.h80 // Implementations of HTMLInputElement::stepUp() and stepDown().
81 void stepUp(int, ExceptionState&);
83 void stepUp(ExceptionState& exceptionState) { stepUp(1, exceptionState); } function in class:WebCore::HTMLInputElement
85 // stepUp()/stepDown() for user-interaction.
H A DHTMLInputElement.cpp304 void HTMLInputElement::stepUp(int n, ExceptionState& exceptionState) function in class:WebCore::HTMLInputElement
306 m_inputType->stepUp(n, exceptionState);
311 m_inputType->stepUp(-n, exceptionState);
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeNumericFieldElement.cpp182 void DateTimeNumericFieldElement::stepUp() function in class:WebCore::DateTimeNumericFieldElement
H A DDateTimeEditElement.cpp768 void DateTimeEditElement::stepUp() function in class:WebCore::DateTimeEditElement
771 field->stepUp();
/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/forms/
H A DInputType.cpp868 void InputType::stepUp(int n, ExceptionState& exceptionState) function in class:WebCore::InputType
879 // The differences from stepUp()/stepDown():

Completed in 2608 milliseconds