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

1234

/openjdk7/jdk/src/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));
H A DGlyphListPipe.java78 tl.draw(sg2d, (float)x, (float)y);
111 tl.draw(sg2d, ix, iy);
/openjdk7/jdk/src/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
/openjdk7/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 DUnderlinePositionTest.java61 tl.draw(g2d, 0, 0);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DXrandr.h79 Drawable draw);
92 Drawable draw,
100 Drawable draw,
/openjdk7/jdk/test/sun/java2d/pisces/Renderer/
H A DTestNPE.java47 g2d.draw(new Line2D.Float(131.21428571428572f, 33.0f,
H A DTest7019861.java55 g2.draw(p);
/openjdk7/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 DScaleTest.java42 g.draw(new Ellipse2D.Double(25, 25, 150, 150));
H A DThinLineTest.java47 g.draw(new Ellipse2D.Double(PIXEL * 50, PIXEL * 50, PIXEL * 300, PIXEL * 300));
H A DStrokeShapeTest.java50 g.draw(shape);
/openjdk7/jdk/src/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
124 boolean draw = false;
133 draw = true;
141 draw = true;
143 if (draw) {
/openjdk7/jdk/src/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
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRRenderer.java91 draw(sg2d, new Rectangle2D.Float(x, y, width, height));
104 draw(sg2d, p2d);
109 draw(sg2d, new Polygon(xpoints, ypoints, npoints));
139 draw(sg2d, new RoundRectangle2D.Float(x, y, width, height,
152 draw(sg2d, new Ellipse2D.Float(x, y, width, height));
163 draw(sg2d, new Arc2D.Float(x, y, width, height,
183 * This method needs to be called prior to each draw/fillPath()
250 public void draw(SunGraphics2D sg2d, Shape s) { method in class:XRRenderer
/openjdk7/jdk/test/java/awt/print/PaintSetEnabledDeadlock/
H A DPaintSetEnabledDeadlock.java141 draw();
161 public void draw() { method in class:TestPanel
/openjdk7/jdk/src/solaris/native/sun/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);
/openjdk7/jdk/src/share/demo/applets/GraphicsTest/
H A DGraphicsTest.java320 abstract void draw(Graphics g, int x, int y, int w, int h); method in class:Shape
329 void draw(Graphics g, int x, int y, int w, int h) { method in class:RectShape
343 void draw(Graphics g, int x, int y, int w, int h) { method in class:OvalShape
357 void draw(Graphics g, int x, int y, int w, int h) { method in class:RoundRectShape
395 void draw(Graphics g, int x, int y, int w, int h) { method in class:PolygonShape
449 shape.draw(g, cx, cy, cw, ch);
/openjdk7/jdk/src/share/classes/javax/swing/border/
H A DStrokeBorder.java116 g2d.draw(new Rectangle2D.Float(x + size / 2, y + size / 2, width - size, height - size));
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFocus.java44 public void draw(final Graphics2D sg2d); method in interface:AquaFocus.Drawable
62 drawable.draw(sg2d);
101 public void draw(SunGraphics2D sg2d) {

Completed in 172 milliseconds

1234