OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:floatMax
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
NumberInputType.cpp
127
const double
floatMax
= numeric_limits<float>::max();
128
if (newValue < -
floatMax
|| newValue >
floatMax
) {
129
exceptionState.throwDOMException(InvalidStateError, "The value provided (" + String::number(newValue) + ") is outside the range (" + String::number(-
floatMax
) + ", " + String::number(
floatMax
) + ").");
138
const Decimal
floatMax
= Decimal::fromDouble(numeric_limits<float>::max());
139
if (newValue < -
floatMax
|| newValue >
floatMax
) {
140
exceptionState.throwDOMException(InvalidStateError, "The value provided (" + newValue.toString() + ") is outside the range (-" +
floatMax
.toString() + ", " +
floatMax
.toString() + ").")
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserIdioms.cpp
108
const Decimal
floatMax
= Decimal::fromDouble(std::numeric_limits<float>::max());
109
if (value < -
floatMax
|| value >
floatMax
)
Completed in 195 milliseconds