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

/libcore/luni/src/main/native/
H A Djava_lang_Double.cpp17 #define LOG_TAG "Double"
27 union Double { union
35 Double d;
42 Double d;
48 Double d;
54 NATIVE_METHOD(Double, doubleToLongBits, "(D)J"),
55 NATIVE_METHOD(Double, doubleToRawLongBits, "(D)J"),
56 NATIVE_METHOD(Double, longBitsToDouble, "(J)D"),
59 return jniRegisterNativeMethods(env, "java/lang/Double", gMethods, NELEM(gMethods));
/libcore/luni/src/main/java/java/lang/
H A DDouble.java26 public final class Double extends Number implements Comparable<Double> { class in inherits:Number,Comparable
81 * Equal to {@code Math.getExponent(Double.MAX_VALUE)}.
89 * Equal to {@code Math.getExponent(Double.MIN_NORMAL)}.
102 public static final Class<Double> TYPE
103 = (Class<Double>) double[].class.getComponentType();
104 // Note: Double.TYPE can't be set to "double.class", since *that* is
105 // defined to be "java.lang.Double.TYPE";
116 * Constructs a new {@code Double} with the specified primitive double
122 public Double(doubl method in class:Double
135 public Double(String string) throws NumberFormatException { method in class:Double
[all...]

Completed in 59 milliseconds