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

/frameworks/base/core/java/android/util/
H A DRational.java31 * Constant for the <em>Not-a-Number (NaN)</em> value of the {@code Rational} type.
33 * <p>A {@code NaN} value is considered to be equal to itself (that is {@code NaN.equals(NaN)}
34 * will return {@code true}; it is always greater than any non-{@code NaN} value (that is
35 * {@code NaN.compareTo(notNaN)} will return a number greater than {@code 0}).</p>
40 public static final Rational NaN = new Rational(0, 0); field in class:Rational
116 mNumerator = 0; // NaN
144 * was negative), or {@code NaN} (if the numerator was {@code 0}).</p>
153 * Indicates whether this rational is a <em>Not-a-Number (NaN)</e
[all...]

Completed in 139 milliseconds