Searched defs:draw (Results 1 - 25 of 39) sorted by relevance

12

/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 DAAShapePipe.java54 public void draw(SunGraphics2D sg, Shape s) { method in class:AAShapePipe
H A DSpanShapeRenderer.java86 public void draw(SunGraphics2D sg, Shape s) { method in class:SpanShapeRenderer
H A DLoopPipe.java80 sg2d.shapepipe.draw(sg2d,
88 sg2d.shapepipe.draw(sg2d, new Ellipse2D.Float(x, y, width, height));
95 sg2d.shapepipe.draw(sg2d, new Arc2D.Float(x, y, width, height,
173 public void draw(SunGraphics2D sg2d, Shape s) { method in class:LoopPipe
H A DNullPipe.java104 public void draw(SunGraphics2D sg, Shape s) { method in class:NullPipe
H A DPixelToParallelogramConverter.java119 public void draw(SunGraphics2D sg2d, Shape s) { method in class:PixelToParallelogramConverter
148 outpipe.draw(sg2d, s);
/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 DTextSourceLabel.java129 public void draw(Graphics2D g, float x, float y) { method in class:TextSourceLabel
H A DGraphicComponent.java239 graphic.draw(g2d, x, y);
244 public void draw(Graphics2D g2d, float x, float y) { method in class:GraphicComponent
H A DTextLineComponent.java45 public void draw(Graphics2D g2d, float x, float y); method in interface:TextLineComponent
/openjdk7/jdk/test/java/awt/print/PaintSetEnabledDeadlock/
H A DPaintSetEnabledDeadlock.java141 draw();
161 public void draw() { method in class:TestPanel
/openjdk7/jdk/src/solaris/classes/sun/java2d/jules/
H A DJulesShapePipe.java54 public void draw(SunGraphics2D sg2d, Shape s) { method in class:JulesShapePipe
/openjdk7/jdk/src/share/classes/java/awt/font/
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
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);
/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) {
/openjdk7/jdk/src/share/classes/sun/print/
H A DPeekMetrics.java97 * The application is performing a draw
100 public void draw(Graphics2D g) { method in class:PeekMetrics
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DAnnotation.java83 public void draw(Graphics g) { method in class:Annotation
/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphics2D.java135 * If the operation is a <code>draw(Shape)</code> operation, then
294 * methods that map onto general <code>draw</code> and
356 * Similarly, for draw operations, including <code>drawLine</code>,
359 * and <code>drawPolygon</code>, {@link #draw(Shape) draw} can now be
363 * draw(new Rectangle(x, y, w, h));
524 public abstract void draw(Shape s); method in class:Graphics2D
815 * @see #draw
835 * <code>drawImage</code>, <code>drawString</code>, <code>draw</code>,
1112 * g2d.draw(
[all...]
/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/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/src/macosx/classes/sun/java2d/
H A DCompositeCRenderer.java56 draw(sg2d, line);
63 draw(sg2d, rectangle);
70 draw(sg2d, roundrectangle);
77 draw(sg2d, ellipse);
84 draw(sg2d, arc);
143 public synchronized void draw(SunGraphics2D sg2d, Shape shape) { method in class:CompositeCRenderer
154 // We don't want to draw with negative width and height (CRender doesn't do it and Windows doesn't do it either)
186 g.draw(shape);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPathGraphics.java151 public void draw(Shape s) { method in class:WPathGraphics
228 super.draw(s);
242 super.draw(s);
348 * so that GDI can draw the text rotated.
426 layout.draw(this, x, y);
969 /* We do not need to draw anything if either scaling
1466 draw(new Rectangle2D.Float(x, y, width, height));
1527 draw(new Rectangle2D.Float(x, y, width, height));
1532 draw(new Rectangle2D.Float(x, y, width, height));
1587 draw(ne
[all...]
/openjdk7/jdk/src/windows/classes/sun/java2d/windows/
H A DGDIRenderer.java310 public void draw(SunGraphics2D sg2d, Shape s) { method in class:GDIRenderer
/openjdk7/jdk/src/share/demo/applets/Fractal/
H A DCLSFractal.java264 turtle.draw(g);
372 public void draw(Graphics g) { method in class:CLSTurtle

Completed in 68 milliseconds

12