Searched refs:copyArea (Results 1 - 25 of 29) sorted by relevance

12

/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/
H A DMiscTests.java62 "copyArea() Tests");
64 new CopyArea("copyAreaVert", "Vertical copyArea()", 0, 1);
65 new CopyArea("copyAreaHoriz", "Horizontal copyArea()", 1, 0);
66 new CopyArea("copyAreaDiag", "Diagonal copyArea()", 1, 1);
93 g.copyArea(x, y, size, size, dx, dy);
99 g.copyArea(x, y, size, size, dx, dy);
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DNullSurfaceData.java147 public boolean copyArea(SunGraphics2D sg2d, method in class:NullSurfaceData
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPrinterSurfaceData.java73 public BufferedImage copyArea(SunGraphics2D sg2d, int x, int y, int w, int h, BufferedImage dstImage) { method in class:CPrinterSurfaceData
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DRenderer.java76 void copyArea(SunGraphics2D sg2d, method in class:D3DRenderer
216 public void copyArea(SunGraphics2D sg2d, method in class:D3DRenderer.Tracer
220 d3dr.copyArea(sg2d, x, y, w, h, dx, dy);
H A DD3DSurfaceData.java678 public boolean copyArea(SunGraphics2D sg2d, method in class:D3DSurfaceData
687 d3dRenderPipe.copyArea(sg2d, x, y, w, h, dx, dy);
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLRenderer.java75 void copyArea(SunGraphics2D sg2d, method in class:OGLRenderer
215 public void copyArea(SunGraphics2D sg2d, method in class:OGLRenderer.Tracer
219 oglr.copyArea(sg2d, x, y, w, h, dx, dy);
H A DOGLSurfaceData.java548 public boolean copyArea(SunGraphics2D sg2d, method in class:OGLSurfaceData
557 oglRenderPipe.copyArea(sg2d, x, y, w, h, dx, dy);
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRBackend.java56 public void copyArea(int src, int dst, long gc, int srcx, int srcy, method in interface:XRBackend
H A DXRSurfaceData.java292 * Returns a boolean indicating whether or not a copyArea from the given
295 * allows the SurfaceData copyArea method to determine if it needs to set
328 public boolean copyArea(SunGraphics2D sg2d, int x, int y, int w, int h, method in class:XRSurfaceData
347 renderQueue.copyArea(xid, xid, xgc, x, y, w, h, x + dx, y + dy);
385 private long xgc; // GC is still used for copyArea
H A DXRBackendNative.java75 public native void copyArea(int src, int dst, long gc, method in class:XRBackendNative
/openjdk7/jdk/src/share/classes/javax/swing/
H A DBufferStrategyPaintManager.java104 // reset and any subsequent calls to paint/copyArea then update these
119 * Farthest JComponent ancestor for the current paint/copyArea.
123 * Parent Applet/Window for the current paint/copyArea
314 public void copyArea(JComponent c, Graphics g, int x, int y, int w, int h, method in class:BufferStrategyPaintManager
320 // If the buffer isn't in sync there is no point in doing a copyArea,
330 bsg.copyArea(relX, relY, w, h, deltaX, deltaY);
333 bsg.copyArea(xOffset + x, yOffset + y, w, h, deltaX,
339 LOGGER.finer("copyArea: prepare failed or not in sync");
341 // Prepare failed, or not in sync. By calling super.copyArea
343 // the screen otherwise we'll do a copyArea o
[all...]
H A DRepaintManager.java1259 * @param clip Whether or not the copyArea needs to be clipped to the
1262 void copyArea(JComponent c, Graphics g, int x, int y, int w, int h, method in class:RepaintManager
1264 getPaintManager().copyArea(c, g, x, y, w, h, deltaX, deltaY, clip);
1268 * Invoked prior to any paint/copyArea method calls. This will
1472 public void copyArea(JComponent c, Graphics g, int x, int y, int w, method in class:RepaintManager.PaintManager
1474 g.copyArea(x, y, w, h, deltaX, deltaY);
1478 * Invoked prior to any calls to paint or copyArea.
H A DJViewport.java62 * do a <code>copyArea</code> on the scrolled region.
70 * having to do two <code>copyArea</code>s.
77 * obscures the viewport the copyArea will copy garbage and a
173 * Use <code>graphics.copyArea</code> to implement scrolling.
214 // will be generated by the system if copyArea copies a non-visible
694 // We invoked paint as part of copyArea cleanup, let it through.
801 bsg.copyArea(blitFrom.x, blitFrom.y, blitSize.width, blitSize.height, bdx, bdy);
909 * <code>Graphics.copyArea</code> to effect some of the scroll.
1113 // The visible region is dirty, no point in doing copyArea
1596 rm.copyArea(thi
[all...]
H A DDefaultDesktopManager.java669 currentManager.copyArea(parent, desktopGraphics, visBounds.x,
781 * of a copyArea's source argument is not available onscreen.
H A DDebugGraphics.java1286 * Overrides <code>Graphics.copyArea</code>.
1288 public void copyArea(int x, int y, int width, int height, method in class:DebugGraphics
1296 graphics.copyArea(x, y, width, height, destX, destY);
/openjdk7/jdk/test/javax/swing/plaf/metal/MetalBumps/
H A DTest6657026.java147 public void copyArea(int x, int y, int width, int height, int dx, int dy) { method in class:Test6657026.MyGraphics
/openjdk7/jdk/src/macosx/classes/sun/java2d/opengl/
H A DCGLSurfaceData.java177 public boolean copyArea(SunGraphics2D sg2d, int x, int y, int w, int h, method in class:CGLSurfaceData
197 oglRenderPipe.copyArea(sg2d, x, y, w, h, dx, dy);
/openjdk7/jdk/src/share/classes/sun/print/
H A DProxyGraphics.java340 * <code>copyArea</code> will be unable to copy the associated
350 public void copyArea(int x, int y, int width, int height, method in class:ProxyGraphics
352 g.copyArea(x, y, width, height, dx, dy);
H A DProxyGraphics2D.java423 * <code>copyArea</code> will be unable to copy the associated
434 public void copyArea(int x, int y, int width, int height, method in class:ProxyGraphics2D
436 mGraphics.copyArea(x, y, width, height, dx, dy);
H A DPeekGraphics.java487 * <code>copyArea</code> will be unable to copy the associated
498 public void copyArea(int x, int y, int width, int height, method in class:PeekGraphics
/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphics.java373 * <code>copyArea</code> will be unable to copy the associated
383 public abstract void copyArea(int x, int y, int width, int height, method in class:Graphics
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXOffScreenSurfaceData.java475 * Performs a copyArea within this surface.
477 public boolean copyArea(SunGraphics2D sg2d, int x, int y, int w, int h, int dx, int dy) { method in class:OSXOffScreenSurfaceData
479 // BufImageSurfaceData.java doesn't have an implementation of copyArea() and relies on the super class.
494 // clip copyArea
526 public BufferedImage copyArea(SunGraphics2D sg2d, int x, int y, int w, int h, BufferedImage dstImage) { method in class:OSXOffScreenSurfaceData
H A DCompositeCRenderer.java353 return surfaceData.copyArea(sg2d, x, y, w, h, dstInPixels);
/openjdk7/jdk/src/windows/classes/sun/java2d/windows/
H A DGDIWindowSurfaceData.java294 public boolean copyArea(SunGraphics2D sg2d, method in class:GDIWindowSurfaceData
/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11SurfaceData.java468 * Returns a boolean indicating whether or not a copyArea from
472 * This method allows the SurfaceData copyArea method to determine
481 public boolean copyArea(SunGraphics2D sg2d, method in class:X11SurfaceData

Completed in 167 milliseconds

12