Searched refs:draw (Results 1 - 25 of 111) sorted by relevance

12345

/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/pipe/
H A DShapeDrawPipe.java37 public void draw(SunGraphics2D sg, Shape s); method in interface:ShapeDrawPipe
H A DPixelToShapeConverter.java52 outpipe.draw(sg, new Line2D.Float(x1, y1, x2, y2));
57 outpipe.draw(sg, new Rectangle(x, y, w, h));
68 outpipe.draw(sg, new RoundRectangle2D.Float(x, y, w, h, aW, aH));
79 outpipe.draw(sg, new Ellipse2D.Float(x, y, w, h));
90 outpipe.draw(sg, new Arc2D.Float(x, y, w, h,
119 outpipe.draw(sg, makePoly(xPoints, yPoints, nPoints, false));
125 outpipe.draw(sg, makePoly(xPoints, yPoints, nPoints, true));
/openjdk10/jdk/src/java.desktop/share/classes/sun/font/
H A DTextLabel.java81 public abstract void draw(Graphics2D g, float x, float y); method in class:TextLabel
121 public void draw(Graphics2D g) { method in class:TextLabel
122 draw(g, 0f, 0f);
H A DTextLineComponent.java45 public void draw(Graphics2D g2d, float x, float y); method in interface:TextLineComponent
/openjdk10/jdk/test/java/awt/font/TextLayout/
H A DKernCrash.java59 layout.draw(g2, 10, 150);
63 layout2.draw(g2, 10, 200);
65 layout3.draw(g2, 10, 100);
H A DDecorationBoundsTest.java57 tl.draw(g2d, 0, 0);
74 tl.draw(g2d, 0, 0);
H A DTestJustification.java159 g2d.draw(bounds);
161 layout.draw(g2d, 0, 0);
166 g2d.draw(carets[0]);
243 layout.draw(g2d, basex + dx, basey);
H A DUnderlinePositionTest.java61 tl.draw(g2d, 0, 0);
/openjdk10/jdk/test/sun/pisces/
H A DJoinMiterTest.java43 g.draw(new Polygon(new int[] {0, 150, 0}, new int[] {75, 0, -75}, 3));
H A DThinLineTest.java47 g.draw(new Ellipse2D.Double(PIXEL * 50, PIXEL * 50, PIXEL * 300, PIXEL * 300));
H A DScaleTest.java42 g.draw(new Ellipse2D.Double(25, 25, 150, 150));
H A DStrokeShapeTest.java50 g.draw(shape);
/openjdk10/jdk/test/sun/java2d/pisces/Renderer/
H A DTestNPE.java47 g2d.draw(new Line2D.Float(131.21428571428572f, 33.0f,
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/font/
H A DShapeGraphicAttribute.java138 public void draw(Graphics2D graphics, float x, float y) { method in class:ShapeGraphicAttribute
140 // translating graphics to draw Shape !!!
146 graphics.draw(fShape);
H A DGraphicAttribute.java184 public abstract void draw(Graphics2D graphics, float x, float y); method in class:GraphicAttribute
H A DImageGraphicAttribute.java162 public void draw(Graphics2D graphics, float x, float y) { method in class:ImageGraphicAttribute
/openjdk10/nashorn/test/script/nosecurity/treeapi/
H A Dclass.js57 static draw(circle, canvas) {
/openjdk10/jdk/src/java.desktop/unix/native/libawt_xawt/awt/
H A DXrandr.h156 Drawable draw);
169 Drawable draw,
177 Drawable draw,
/openjdk10/jdk/test/java/awt/image/DrawImage/
H A DIncorrectClipSurface2SW.java102 draw(clip, to, vi, bi, scale);
103 draw(clip, to, goldvi, goldbi, scale);
111 private static void draw(Shape clip, Shape to, Image vi, BufferedImage bi, method in class:IncorrectClipSurface2SW
H A DIncorrectUnmanagedImageRotatedClip.java69 // draw to compatible Image
70 draw(bi, gold);
71 // draw to volatile image
82 draw(bi, vi);
101 private static void draw(final BufferedImage from,final Image to) { method in class:IncorrectUnmanagedImageRotatedClip
/openjdk10/jdk/test/java/awt/print/Headless/
H A DHeadlessPrinterJob.java68 // draw Line2D.Double
69 g2.draw(new Line2D.Double(x, y + rectHeight - 1, x + rectWidth, y));
72 // draw Rectangle2D.Double
74 g2.draw(new Rectangle2D.Double(x, y, rectWidth, rectHeight));
77 // draw RoundRectangle2D.Double
79 g2.draw(new RoundRectangle2D.Double(x, y, rectWidth,
/openjdk10/jdk/src/java.desktop/share/classes/sun/swing/
H A DCachedPainter.java45 * <li>Invoke <code>paint</code> to draw the cached reprensentation at
48 * draw the image yourself. This is primarly useful when you are not
117 boolean draw = false;
126 draw = true;
134 draw = true;
139 if (draw) {
/openjdk10/jdk/src/java.desktop/unix/native/common/java2d/opengl/
H A DOGLFuncs_md.h63 typedef void (GLAPIENTRY *glXQueryDrawableType)(Display *dpy, GLXDrawable draw, int attribute, unsigned int *value);
65 typedef Bool (GLAPIENTRY *glXMakeContextCurrentType)(Display *dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx);
68 typedef void (GLAPIENTRY *glXSelectEventType)(Display *dpy, GLXDrawable draw, unsigned long event_mask);
69 typedef void (GLAPIENTRY *glXGetSelectedEventType)(Display *dpy, GLXDrawable draw, unsigned long *event_mask);
/openjdk10/jdk/test/java/awt/BasicStroke/
H A DDashStrokeTest.java67 g2.draw(shape);
/openjdk10/jdk/test/java/awt/print/PageFormat/
H A DSetOrient.java74 g.draw(new Ellipse2D.Double(ix, iy, iw, ih));

Completed in 146 milliseconds

12345