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

/openjdk7/langtools/test/tools/javac/synthesize/
H A DDouble.java3 public class Double extends Number class in inherits:Number
5 public static Double valueOf(double v) {
6 return new Double(v);
9 public Double(double v) { method in class:Double
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DEllipse2D.java189 * The <code>Double</code> class defines an ellipse specified
193 public static class Double extends Ellipse2D implements Serializable { class in class:Ellipse2D
229 public Double() { method in class:Ellipse2D.Double
244 public Double(double x, double y, double w, double h) { method in class:Ellipse2D.Double
304 return new Rectangle2D.Double(x, y, width, height);
321 * @see java.awt.geom.Ellipse2D.Double
431 long bits = java.lang.Double.doubleToLongBits(getX());
432 bits += java.lang.Double.doubleToLongBits(getY()) * 37;
433 bits += java.lang.Double.doubleToLongBits(getWidth()) * 43;
434 bits += java.lang.Double
[all...]
H A DPoint2D.java142 * The <code>Double</code> class defines a point specified in
146 public static class Double extends Point2D implements Serializable { class in class:Point2D
166 public Double() { method in class:Point2D.Double
179 public Double(double x, double y) { method in class:Point2D.Double
216 return "Point2D.Double["+x+", "+y+"]";
233 * @see java.awt.geom.Point2D.Double
405 long bits = java.lang.Double.doubleToLongBits(getX());
406 bits ^= java.lang.Double.doubleToLongBits(getY()) * 31;
H A DLine2D.java222 public static class Double extends Line2D implements Serializable { class in class:Line2D
255 public Double() { method in class:Line2D.Double
267 public Double(double x1, double y1, double x2, double y2) { method in class:Line2D.Double
278 public Double(Point2D p1, Point2D p2) { method in class:Line2D.Double
303 return new Point2D.Double(x1, y1);
327 return new Point2D.Double(x2, y2);
361 return new Rectangle2D.Double(x, y, w, h);
378 * @see java.awt.geom.Line2D.Double
1019 return intersects(new Rectangle2D.Double(x, y, w, h));
H A DRectangle2D.java263 dest = new Rectangle2D.Double();
278 dest = new Rectangle2D.Double();
306 * The <code>Double</code> class defines a rectangle specified in
310 public static class Double extends Rectangle2D implements Serializable { class in class:Rectangle2D
344 public Double() { method in class:Rectangle2D.Double
361 public Double(double x, double y, double w, double h) { method in class:Rectangle2D.Double
455 return new Double(x, y, width, height);
463 Rectangle2D dest = new Rectangle2D.Double();
473 Rectangle2D dest = new Rectangle2D.Double();
507 * @see java.awt.geom.Rectangle2D.Double
[all...]
H A DRoundRectangle2D.java260 * The <code>Double</code> class defines a rectangle with rounded
264 public static class Double extends RoundRectangle2D class in class:RoundRectangle2D
315 public Double() { method in class:RoundRectangle2D.Double
338 public Double(double x, double y, double w, double h, method in class:RoundRectangle2D.Double
433 return new Rectangle2D.Double(x, y, width, height);
450 * @see java.awt.geom.RoundRectangle2D.Double
643 long bits = java.lang.Double.doubleToLongBits(getX());
644 bits += java.lang.Double.doubleToLongBits(getY()) * 37;
645 bits += java.lang.Double.doubleToLongBits(getWidth()) * 43;
646 bits += java.lang.Double
[all...]
H A DArc2D.java380 public static class Double extends Arc2D implements Serializable { class in class:Arc2D
432 public Double() { method in class:Arc2D.Double
445 public Double(int type) { method in class:Arc2D.Double
467 public Double(double x, double y, double w, double h, method in class:Arc2D.Double
491 public Double(Rectangle2D ellipseBounds, method in class:Arc2D.Double
611 return new Rectangle2D.Double(x, y, w, h);
682 * @see java.awt.geom.Arc2D.Double
698 * @see java.awt.geom.Arc2D.Double
750 return new Point2D.Double(x, y);
767 return new Point2D.Double(
[all...]
H A DCubicCurve2D.java340 public static class Double extends CubicCurve2D implements Serializable { class in class:CubicCurve2D
410 public Double() { method in class:CubicCurve2D.Double
435 public Double(double x1, double y1, method in class:CubicCurve2D.Double
464 return new Point2D.Double(x1, y1);
488 return new Point2D.Double(ctrlx1, ctrly1);
512 return new Point2D.Double(ctrlx2, ctrly2);
536 return new Point2D.Double(x2, y2);
571 return new Rectangle2D.Double(left, top,
589 * @see java.awt.geom.CubicCurve2D.Double
H A DQuadCurve2D.java266 public static class Double extends QuadCurve2D implements Serializable { class in class:QuadCurve2D
320 public Double() { method in class:QuadCurve2D.Double
335 public Double(double x1, double y1, method in class:QuadCurve2D.Double
363 return new Point2D.Double(x1, y1);
387 return new Point2D.Double(ctrlx, ctrly);
411 return new Point2D.Double(x2, y2);
439 return new Rectangle2D.Double(left, top,
457 * @see java.awt.geom.QuadCurve2D.Double
H A DPath2D.java44 * and used with floating point precision. Use {@link Path2D.Double}
979 * The {@code Double} class defines a geometric path with
984 public static class Double extends Path2D implements Serializable { class in class:Path2D
993 public Double() { method in class:Path2D.Double
1007 public Double(int rule) { method in class:Path2D.Double
1026 public Double(int rule, int initialCapacity) { method in class:Path2D.Double
1040 public Double(Shape s) { method in class:Path2D.Double
1056 public Double(Shape s, AffineTransform at) { method in class:Path2D.Double
1109 return new Point2D.Double(doubleCoords[coordindex],
1446 return new Rectangle2D.Double(x
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DDouble.java33 * The {@code Double} class wraps a value of the primitive type
35 * {@code Double} contains a single field whose type is
49 public final class Double extends Number implements Comparable<Double> { class in inherits:Number,Comparable
53 * {@code Double.longBitsToDouble(0x7ff0000000000000L)}.
60 * {@code Double.longBitsToDouble(0xfff0000000000000L)}.
67 * {@code Double.longBitsToDouble(0x7ff8000000000000L)}.
77 * {@code Double.longBitsToDouble(0x7fefffffffffffffL)}.
85 * equal to {@code Double.longBitsToDouble(0x0010000000000000L)}.
96 * {@code Double
580 public Double(double value) { method in class:Double
595 public Double(String s) throws NumberFormatException { method in class:Double
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DverificationType.hpp106 Double = (ITEM_Double << 2 * BitsPerByte) | Category2, enumerator in enum:VALUE_OBJ_CLASS_SPEC::__anon180
137 static VerificationType double_type() { return VerificationType(Double); }
183 bool is_double() const { return (_u._data == Double); }
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dlcms2_plugin.h536 cmsFloat64Number* Double; // floating point for the matrix member in struct:__anon905
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DToken.java71 Double = 8, field in class:Token

Completed in 620 milliseconds