Searched defs:drawLine (Results 1 - 25 of 29) sorted by relevance

12

/openjdk7/jdk/test/sun/java2d/SunGraphics2D/
H A DSimplePrimQuality.java27 * @summary Verifies that the pixelization of simple primitives (drawLine,
79 private void drawLine(Graphics2D g, int x, int y, int dx, int dy) { method in class:SimplePrimQuality
80 g.drawLine(x, y, x + dx, y + dy);
84 drawLine(g, 2, 0, 0, 0);
85 drawLine(g, 12, 0, 0, s);
86 drawLine(g, 22, 0, s, 0);
87 drawLine(g, 32, 0, s, s);
88 drawLine(g, 42, 0, 0, -s);
89 drawLine(g, 52, 0, -s, 0);
90 drawLine(
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DPixelDrawPipe.java43 public void drawLine(SunGraphics2D sg, method in interface:PixelDrawPipe
H A DPixelToShapeConverter.java50 public void drawLine(SunGraphics2D sg, method in class:PixelToShapeConverter
H A DLoopPipe.java57 public void drawLine(SunGraphics2D sg2d, method in class:LoopPipe
H A DNullPipe.java49 public void drawLine(SunGraphics2D sg, method in class:NullPipe
H A DPixelToParallelogramConverter.java55 * (and drawLine calls if possible)
77 public void drawLine(SunGraphics2D sg2d, method in class:PixelToParallelogramConverter
81 super.drawLine(sg2d, x1, y1, x2, y2);
101 // will verify that the local drawLine optimizations
102 // work and call super.drawLine(), if not.
103 drawLine(sg2d, x, y, x+w, y+h);
242 ((PixelDrawPipe)outrenderer).drawLine(sg2d, ix1, iy1, ix2, iy2);
H A DBufferedRenderPipe.java50 * This class provides implementations of drawLine(), drawRect(), drawPoly(),
86 public void drawLine(SunGraphics2D sg2d, method in class:BufferedRenderPipe
201 drawLine(sg2d, xPoints[0], yPoints[0], xPoints[1], yPoints[1]);
291 public void drawLine(int x1, int y1, int x2, int y2) { method in class:BufferedRenderPipe.BufferedDrawHandler
H A DValidatePipe.java59 public void drawLine(SunGraphics2D sg, method in class:ValidatePipe
62 sg.drawpipe.drawLine(sg, x1, y1, x2, y2);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DPlainView.java76 protected void drawLine(int lineIndex, Graphics g, int x, int y) { method in class:PlainView
311 drawLine(line, g, x, y);
H A DWrappedPlainView.java44 * <code>drawLine</code> method which in turn does all of
104 protected void drawLine(int p0, int p1, Graphics g, int x, int y) { method in class:WrappedPlainView
601 drawLine(p0, p1, g, x, y);
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DRenderer.java152 public void drawLine(SunGraphics2D sg2d, method in class:D3DRenderer.Tracer
156 d3dr.drawLine(sg2d, x1, y1, x2, y2);
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLRenderer.java151 public void drawLine(SunGraphics2D sg2d, method in class:OGLRenderer.Tracer
155 oglr.drawLine(sg2d, x1, y1, x2, y2);
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRRenderer.java71 public void drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) { method in class:XRRenderer
193 public void drawLine(int x1, int y1, int x2, int y2) { method in class:XRRenderer.XRDrawHandler
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthGraphicsUtils.java75 public void drawLine(SynthContext context, Object paintKey, method in class:SynthGraphicsUtils
77 g.drawLine(x1, y1, x2, y2);
99 public void drawLine(SynthContext context, Object paintKey, method in class:SynthGraphicsUtils
108 g.drawLine(x1, y, x2, y);
115 g.drawLine(x, y1, x, y2);
120 drawLine(context, paintKey, g, x1, y1, x2, y2);
/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphics.java395 public abstract void drawLine(int x1, int y1, int x2, int y2); method in class:Graphics
440 drawLine(x, y, x + width, y + height);
442 drawLine(x, y, x + width - 1, y);
443 drawLine(x + width, y, x + width, y + height - 1);
444 drawLine(x + width, y + height, x + 1, y + height);
445 drawLine(x, y + height, x, y + 1);
534 drawLine(x, y, x, y + height);
535 drawLine(x + 1, y, x + width - 1, y);
537 drawLine(x + 1, y + height, x + width, y + height);
538 drawLine(
[all...]
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DCompositeCRenderer.java52 public synchronized void drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) { method in class:CompositeCRenderer
H A DCRenderer.java48 public void drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) { method in class:CRenderer
49 drawLine(sg2d, (float) x1, (float) y1, (float) x2, (float) y2);
54 public void drawLine(SunGraphics2D sg2d, float x1, float y1, float x2, float y2) { method in class:CRenderer
339 drawLine(sg2d, x1, y1, x2, y2);
346 drawLine(sg2d, x, y, x, y);
/openjdk7/jdk/src/windows/classes/sun/java2d/windows/
H A DGDIRenderer.java53 public void drawLine(SunGraphics2D sg2d, method in class:GDIRenderer
/openjdk7/jdk/test/javax/swing/plaf/metal/MetalBumps/
H A DTest6657026.java151 public void drawLine(int x1, int y1, int x2, int y2) { method in class:Test6657026.MyGraphics
/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11Renderer.java84 public void drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) { method in class:X11Renderer
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DGeneralRenderer.java685 public void drawLine(int x0, int y0, int x1, int y1) { method in class:PixelWriterDrawHandler
H A DProcessPath.java110 public abstract void drawLine(int x0, int y0, int x1, int y1); method in class:ProcessPath.DrawHandler
488 dhnd.drawLine(X0, Y0, X1, Y1);
/openjdk7/jdk/src/share/classes/sun/print/
H A DProxyGraphics.java364 public void drawLine(int x1, int y1, int x2, int y2) { method in class:ProxyGraphics
365 g.drawLine(x1, y1, x2, y2);
H A DPathGraphics.java158 public void drawLine(int x1, int y1, int x2, int y2) { method in class:PathGraphics
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDebugGraphics.java507 * Overrides <code>Graphics.drawLine</code>.
509 public void drawLine(int x1, int y1, int x2, int y2) { method in class:DebugGraphics
522 debugGraphics.drawLine(x1, y1, x2, y2);
531 graphics.drawLine(x1, y1, x2, y2);
537 graphics.drawLine(x1, y1, x2, y2);

Completed in 162 milliseconds

12