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

/openjdk7/jdk/src/share/classes/sun/misc/
H A DDoubleConsts.java43 public static final double NaN = java.lang.Double.NaN; field in class:DoubleConsts
H A DFloatConsts.java43 public static final float NaN = java.lang.Float.NaN; field in class:FloatConsts
/openjdk7/jdk/src/share/classes/java/lang/
H A DDouble.java65 * A constant holding a Not-a-Number (NaN) value of type
69 public static final double NaN = 0.0d / 0.0; field in class:Double
137 * <li>If the argument is NaN, the result is the string
138 * "{@code NaN}".
205 * <li>If the argument is NaN, the result is the string
206 * "{@code NaN}".
280 // For infinity and NaN, use the decimal output.
349 * <dd><i>Sign<sub>opt</sub></i> {@code NaN}
458 * "NaN|" + // "NaN" strin
[all...]
H A DFloat.java66 * A constant holding a Not-a-Number (NaN) value of type
70 public static final float NaN = 0.0f / 0.0f; field in class:Float
136 * <li>If the argument is NaN, the result is the string
137 * "{@code NaN}".
208 * <li>If the argument is NaN, the result is the string
209 * "{@code NaN}".
310 * <dd><i>Sign<sub>opt</sub></i> {@code NaN}
457 * Not-a-Number (NaN) value, {@code false} otherwise.
460 * @return {@code true} if the argument is NaN;
524 * Not-a-Number (NaN), {
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_CodeStubs_x86.cpp64 Label NaN, do_return; local
65 __ jccb(Assembler::parity, NaN);
73 // input is NaN -> return 0
74 __ bind(NaN);
/openjdk7/jdk/src/share/classes/java/text/
H A DDecimalFormatSymbols.java281 return NaN;
288 public void setNaN(String NaN) { argument
289 this.NaN = NaN;
503 NaN.equals(other.NaN) &&
558 NaN = numberElements[10];
712 private String NaN; field in class:DecimalFormatSymbols

Completed in 38 milliseconds