Searched defs:POSITIVE_INFINITY (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/lang/
H A DDouble.java65 public static final double POSITIVE_INFINITY = 1.0 / 0.0; field in class:Double
144 * than any other double value, including {@code Double.POSITIVE_INFINITY};</li>
248 return (d == POSITIVE_INFINITY) || (d == NEGATIVE_INFINITY);
339 * than any other double value, including {@code Double.POSITIVE_INFINITY};</li>
408 if (d == POSITIVE_INFINITY) {
H A DFloat.java62 public static final float POSITIVE_INFINITY = 1.0f / 0.0f; field in class:Float
150 * than any other float value, including {@code Float.POSITIVE_INFINITY};</li>
257 return (f == POSITIVE_INFINITY) || (f == NEGATIVE_INFINITY);
344 * than any other float value, including {@code Float.POSITIVE_INFINITY};</li>
415 if (f == POSITIVE_INFINITY) {

Completed in 164 milliseconds