Home
last modified time | relevance | path

Searched refs:parseToDecimalForNumberType (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DNumberInputType.cpp159 const Decimal minimum = parseToDecimalForNumberType(element().fastGetAttribute(minAttr)); in sizeShouldIncludeDecoration()
163 const Decimal maximum = parseToDecimalForNumberType(element().fastGetAttribute(maxAttr)); in sizeShouldIncludeDecoration()
167 const Decimal step = parseToDecimalForNumberType(stepString, 1); in sizeShouldIncludeDecoration()
191 return parseToDecimalForNumberType(src, defaultValue); in parseToNumber()
DStepRange.cpp112 Decimal step = parseToDecimalForNumberType(stepString); in parseStep()
DRangeInputType.cpp254 return parseToDecimalForNumberType(src, defaultValue); in parseToNumber()
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLParserIdioms.h54 Decimal parseToDecimalForNumberType(const String&, const Decimal& fallbackValue = Decimal::nan());
DHTMLParserIdioms.cpp96 Decimal parseToDecimalForNumberType(const String& string, const Decimal& fallbackValue) in parseToDecimalForNumberType() function
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderSliderContainer.cpp54 … const Decimal oldValue = parseToDecimalForNumberType(element->value(), stepRange.defaultValue()); in sliderPosition()