Searched refs:floatMax (Results 1 – 2 of 2) sorted by relevance
127 const double floatMax = numeric_limits<float>::max(); in setValueAsDouble() local128 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() local139 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() local163 …return InputType::createStepRange(anyStepHandling, numberDefaultStepBase, -floatMax, floatMax, ste… in createStepRange()
108 const Decimal floatMax = Decimal::fromDouble(std::numeric_limits<float>::max()); in parseToDecimalForNumberType() local109 if (value < -floatMax || value > floatMax) in parseToDecimalForNumberType()