Lines Matching defs:Double
380 public static class Double extends Arc2D implements Serializable {
432 public Double() {
445 public Double(int type) {
467 public Double(double x, double y, double w, double h,
491 public Double(Rectangle2D ellipseBounds,
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(x, y);
1315 Rectangle2D rect = new Rectangle2D.Double(x, y, w, h);
1390 origrect = new Rectangle2D.Double(x, y, w, h);
1434 long bits = java.lang.Double.doubleToLongBits(getX());
1435 bits += java.lang.Double.doubleToLongBits(getY()) * 37;
1436 bits += java.lang.Double.doubleToLongBits(getWidth()) * 43;
1437 bits += java.lang.Double.doubleToLongBits(getHeight()) * 47;
1438 bits += java.lang.Double.doubleToLongBits(getAngleStart()) * 53;
1439 bits += java.lang.Double.doubleToLongBits(getAngleExtent()) * 59;