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

/macosx-10.10/WebCore-7600.1.25/html/
H A DNumberInputType.cpp115 const double floatMax = std::numeric_limits<float>::max(); local
116 if (newValue < -floatMax) {
120 if (newValue > floatMax) {
130 const Decimal floatMax = Decimal::fromDouble(std::numeric_limits<float>::max()); local
131 if (newValue < -floatMax) {
135 if (newValue > floatMax) {
158 const Decimal floatMax = Decimal::fromDouble(std::numeric_limits<float>::max()); local
159 const Decimal minimum = parseToNumber(element().fastGetAttribute(minAttr), -floatMax);
160 const Decimal maximum = parseToNumber(element().fastGetAttribute(maxAttr), floatMax);
/macosx-10.10/WebCore-7600.1.25/html/parser/
H A DHTMLParserIdioms.cpp109 const Decimal floatMax = Decimal::fromDouble(std::numeric_limits<float>::max()); local
110 if (value < -floatMax || value > floatMax)

Completed in 69 milliseconds