Searched defs:NaN (Results 1 - 4 of 4) 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...]
H A DHalf.java135 public static final @HalfFloat short NaN = (short) 0x7e00; field in class:Half
314 * @return True if the value is a NaN, false otherwise
368 * <li>{@link #NaN} is considered by this method to be equal to itself and greater
403 * <li>{@link #NaN} is considered by this method to be equal to itself and greater
424 short xBits = (x & FP16_COMBINED) > FP16_EXPONENT_MAX ? NaN : x;
425 short yBits = (y & FP16_COMBINED) > FP16_EXPONENT_MAX ? NaN : y;
436 * defined by {@link #NaN}.</p>
444 return (h & FP16_COMBINED) > FP16_EXPONENT_MAX ? NaN : h;
453 * defined by {@link #NaN}.</p>
463 return (h & FP16_COMBINED) > FP16_EXPONENT_MAX ? NaN
[all...]
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
H A DLocation.java41 public static final int NaN = -1; field in class:Location
55 startOffset = endOffset = startLine = endLine = NaN;
67 startLine = startOffset = NaN;
74 endLine = endOffset = NaN;
149 return startLine != NaN && endLine != NaN && startOffset != NaN && endOffset != NaN;
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 96 milliseconds