Home
last modified time | relevance | path

Searched refs:floatMax (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DNumberInputType.cpp127 const double floatMax = numeric_limits<float>::max(); in setValueAsDouble() local
128 if (newValue < -floatMax || newValue > floatMax) { in setValueAsDouble()
129 …wValue) + ") is outside the range (" + String::number(-floatMax) + ", " + String::number(floatMax)… in setValueAsDouble()
138 const Decimal floatMax = Decimal::fromDouble(numeric_limits<float>::max()); in setValueAsDecimal() local
139 if (newValue < -floatMax || newValue > floatMax) { in setValueAsDecimal()
140 … (" + newValue.toString() + ") is outside the range (-" + floatMax.toString() + ", " + floatMax.to… in setValueAsDecimal()
162 const Decimal floatMax = Decimal::fromDouble(numeric_limits<float>::max()); in createStepRange() local
163 …return InputType::createStepRange(anyStepHandling, numberDefaultStepBase, -floatMax, floatMax, ste… in createStepRange()
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLParserIdioms.cpp108 const Decimal floatMax = Decimal::fromDouble(std::numeric_limits<float>::max()); in parseToDecimalForNumberType() local
109 if (value < -floatMax || value > floatMax) in parseToDecimalForNumberType()