Searched refs:dy (Results 126 - 143 of 143) sorted by relevance

123456

/openjdk7/jdk/src/share/classes/sun/print/
H A DProxyGraphics2D.java416 * <code>dx</code> and <code>dy</code>. From the point specified
420 * <code>dx</code> or <code>dy</code>.
431 * @param dy the vertical distance to copy the pixels.
435 int dx, int dy) {
436 mGraphics.copyArea(x, y, width, height, dx, dy);
434 copyArea(int x, int y, int width, int height, int dx, int dy) argument
H A DPeekGraphics.java480 * <code>dx</code> and <code>dy</code>. From the point specified
484 * <code>dx</code> or <code>dy</code>.
495 * @param dy the vertical distance to copy the pixels.
499 int dx, int dy) {
498 copyArea(int x, int y, int width, int height, int dx, int dy) argument
/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11SurfaceData.java482 int x, int y, int w, int h, int dx, int dy)
503 x + dx, y + dy,
481 copyArea(SunGraphics2D sg2d, int x, int y, int w, int h, int dx, int dy) argument
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRSurfaceData.java329 int dx, int dy) {
347 renderQueue.copyArea(xid, xid, xgc, x, y, w, h, x + dx, y + dy);
328 copyArea(SunGraphics2D sg2d, int x, int y, int w, int h, int dx, int dy) argument
/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c442 jfloat ax, ay, dx, dy, bx, by, lx, ly, mx, my; local
498 dy = -(jfloat) FT26Dot6ToFloat(FT_MulFix(
509 + ay - dy;
520 ax, ay, dx, dy, bx, by, lx, ly, mx, my);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DByteInterleavedRaster.java1147 public void setRect(int dx, int dy, Raster srcRaster) { argument
1149 super.setRect(dx, dy, srcRaster);
1158 int dstOffY = dy+srcOffY;
H A DBytePackedRaster.java789 * is copied to address (x+dx, y+dy) in this WritableRaster,
790 * unless (x+dx, y+dy) falls outside the bounds of this raster.
798 * @param dy The Y translation factor from src space to dst space
802 public void setRect(int dx, int dy, Raster srcRaster) { argument
806 super.setRect(dx, dy, srcRaster);
815 int dstOffY = dy+srcOffY;
/openjdk7/jdk/src/share/classes/sun/font/
H A DAttributeValues.java891 double dy = tx.getTranslateY();
894 if (dx != 0 || dy != 0) {
898 rtx.getShearX(), rtx.getScaleY(), dx, dy);
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DShapeSpanIterator.c974 jfloat dx, dy, slope; local
1015 dy = y1 - y0;
1016 slope = dx / dy;
1027 x0 += ystartbump * dx / dy;
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_image_proto.h1274 mlib_s32 dy,
1283 mlib_s32 dy,
1310 mlib_s32 dy);
3466 mlib_s32 dy);
3475 mlib_s32 dy);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJList.java2437 int dy = insets.top + insets.bottom;
2445 int height = (visibleRowCount * fixedCellHeight) + dy;
2453 height = (visibleRowCount * r.height) + dy;
H A DJComponent.java3090 int dx = getX(), dy = getY();
3100 dy += bounds.y;
3105 aRect.y += dy;
3109 aRect.y -= dy;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DStyleSheet.java1872 float dy = 0;
1885 dy = topMargin;
1892 (int) (y + dy),
1897 bgPainter.paint(g, x + dx, y + dy, w + dw, h + dh, v);
/openjdk7/jdk/src/solaris/native/sun/java2d/opengl/J2D_GL/
H A Dglxext.h529 typedef int ( * PFNGLXQUERYCHANNELRECTSGIXPROC) (Display *display, int screen, int channel, int *dx, int *dy, int *dw, int *dh);
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLine.java323 double dy = at.getTranslateY();
324 builder.moveTo(tx += dx, ty += dy);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Font.cpp753 double dy = temp.cx * sin(rads); local
755 y += (long)floor(dy+0.5);
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DXRBackendNative.c637 jint sx, jint sy, jint dx, jint dy, jint width, jint height,
635 Java_sun_java2d_xr_XRBackendNative_putMaskNative(JNIEnv *env, jclass cls, jint drawable, jlong gc, jbyteArray imageData, jint sx, jint sy, jint dx, jint dy, jint width, jint height, jint maskOff, jint maskScan, jfloat ea, jlong imgPtr) argument
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSurfaceData.java1044 int x, int y, int w, int h, int dx, int dy)
1043 copyArea(SunGraphics2D sg2d, int x, int y, int w, int h, int dx, int dy) argument

Completed in 120 milliseconds

123456