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

/dalvik/libcore/luni/src/main/native/
H A Djava_lang_Double.c19 #define NaN (0x7ff8000000000000ULL) macro
30 // For this method all values in the NaN range are
31 // normalized to the canonical NaN value.
34 d.bits = NaN;
H A Djava_lang_Float.c18 #define NaN (0x7fc00000) macro
38 // For this method all values in the NaN range are
39 // normalized to the canonical NaN value.
42 f.bits = NaN;
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/util/
H A DLocaleData.java55 public String NaN; field in class:LocaleData
85 "NaN=" + NaN + "," +
146 if (overrides.NaN != null) {
147 NaN = overrides.NaN;
/dalvik/libcore/luni/src/main/java/java/lang/
H A DDouble.java49 * Constant for the Not-a-Number (NaN) value of the {@code double} type.
51 public static final double NaN = 0.0 / 0.0; field in class:Double
112 * <li>{@code Double.NaN} is equal to {@code Double.NaN} and it is greater
140 * <em>Not-a-Number (NaN)</em> values are converted to a single NaN
155 * <em>Not-a-Number (NaN)</em> values are preserved.
182 * unequal, and {@code NaN}s compare equal by this method.
235 * Indicates whether this object is a <em>Not-a-Number (NaN)</em> value.
245 * Indicates whether the specified double is a <em>Not-a-Number (NaN)</e
[all...]
H A DFloat.java46 * Constant for the Not-a-Number (NaN) value of the {@code float} type.
48 public static final float NaN = 0.0f / 0.0f; field in class:Float
118 * <li>{@code Float.NaN} is equal to {@code Float.NaN} and it is greater
152 * unequal, and {@code NaN}s compare equal by this method.
169 * <em>Not-a-Number (NaN)</em> values are converted to a single NaN
184 * <em>Not-a-Number (NaN)</em> values are preserved.
251 * Indicates whether this object is a <em>Not-a-Number (NaN)</em> value.
261 * Indicates whether the specified float is a <em>Not-a-Number (NaN)</e
[all...]
/dalvik/libcore/text/src/main/java/java/text/
H A DDecimalFormatSymbols.java57 private String infinity, NaN, currencySymbol, intlCurrencySymbol; field in class:DecimalFormatSymbols
83 this.NaN = localeData.NaN;
138 && infinity.equals(obj.infinity) && NaN.equals(obj.NaN)
236 * Returns the string which represents NaN.
238 * @return the symbol NaN as a string.
241 return NaN;
291 + NaN.hashCode() + currencySymbol.hashCode()
422 * Sets the string which represents NaN
[all...]

Completed in 117 milliseconds