Searched refs:dx (Results 126 - 150 of 163) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/java/awt/
H A DRectangle.java507 * @param dx the distance to move this <code>Rectangle</code>
514 public void translate(int dx, int dy) { argument
516 int newv = oldv + dx;
517 if (dx < 0) {
H A DGraphics.java366 * <code>dx</code> and <code>dy</code>. From the point specified
370 * <code>dx</code> or <code>dy</code>.
380 * @param dx the horizontal distance to copy the pixels.
384 int dx, int dy);
383 copyArea(int x, int y, int width, int height, int dx, int dy) argument
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DQuartzRenderer.m509 jint interpolation, BOOL fliph, BOOL flipv, jint w, jint h, jint sx, jint sy, jint sw, jint sh, jint dx, jint dy, jint dw, jint dh)
512 //fprintf(stderr, " flip:(%d, %d), size:(%d, %d), src:(%d, %d, %d, %d), dst:(%d, %d, %d, %d)\n", (jint)fliph, (jint)flipv, w, h, sx, sy, sw, sh, dx, dy, dw, dh);
520 CGFloat tx = dx;
556 jboolean fliph, jboolean flipv, jint w, jint h, jint sx, jint sy, jint sw, jint sh, jint dx, jint dy, jint dw, jint dh)
561 qsdo->graphicsStateInfo.interpolation, (BOOL)fliph, (BOOL)flipv, (jint)w, (jint)h, (jint)sx, (jint)sy, (jint)sw, (jint)sh, (jint)dx, (jint)dy, (jint)dw, (jint)dh);
779 (JNIEnv *env, jobject jthis, jobject jsurfacedata, jobject imageSurfaceData, jboolean fliph, jboolean flipv, jint w, jint h, jint sx, jint sy, jint sw, jint sh, jint dx, jint dy, jint dw, jint dh)
787 doImage(env, qsdo, imageSurfaceData, fliph, flipv, w, h, sx, sy, sw, sh, dx, dy, dw, dh);
/openjdk7/jdk/src/windows/classes/sun/java2d/windows/
H A DGDIRenderer.java331 int dx, int dy,
443 int dx, int dy,
447 super.devCopyArea(sData, srcx, srcy, dx, dy, w, h);
329 devCopyArea(GDIWindowSurfaceData sData, int srcx, int srcy, int dx, int dy, int w, int h) argument
441 devCopyArea(GDIWindowSurfaceData sData, int srcx, int srcy, int dx, int dy, int w, int h) argument
/openjdk7/jdk/test/java/awt/regtesthelpers/
H A DUtil.java327 int dx = endPoint.x - startPoint.x;
330 int ax = Math.abs(dx) * 2;
333 int sx = signWOZero(dx);
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DContext.cpp1249 for (int dx = 0, sx = 0; dx < srcWidth; dx++, sx+=3) {
1254 pDstPixels[dx] = (r << 16) | (g << 8) | (b);
1290 for (int dx = 0, sx = 0; dx < srcWidth; dx++, sx+=3) {
1295 pDstPixels[dx] = (r << 16) | (g << 8) | (b);
H A DD3DRenderQueue.cpp411 jint dx = NEXT_INT(b); local
414 x, y, w, h, dx, dy);
458 jint dx = NEXT_INT(b); local
467 sx, sy, dx, dy, w, h);
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLSurfaceData.java549 int x, int y, int w, int h, int dx, int dy)
557 oglRenderPipe.copyArea(sg2d, x, y, w, h, dx, dy);
548 copyArea(SunGraphics2D sg2d, int x, int y, int w, int h, int dx, int dy) argument
/openjdk7/jdk/src/windows/native/sun/java2d/windows/
H A DGDIRenderer.cpp873 jint dx, jint dy,
878 J2dTraceLn4(J2D_TRACE_VERBOSE, " srcx=%-4d srcy=%-4d dx=%-4d dy=%-4d",
879 srcx, srcy, dx, dy);
898 VERIFY(::ScrollDC(hDC, dx, dy, &r, NULL, rgnUpdate, NULL));
911 ::OffsetRect(&r, dx-wsdo->insets.left, dy-wsdo->insets.top);
869 Java_sun_java2d_windows_GDIRenderer_devCopyArea(JNIEnv *env, jobject wr, jobject wsd, jint srcx, jint srcy, jint dx, jint dy, jint width, jint height) argument
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderQueue.c275 jint dx = NEXT_INT(b); local
278 x, y, w, h, dx, dy);
321 jint dx = NEXT_INT(b); local
330 sx, sy, dx, dy, w, h);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DRepaintManager.java877 int dx, dy, rootDx, rootDy;
894 dx = rootDx = 0;
917 dx += x;
934 rootDx = dx;
941 tmp.setLocation(tmp.x + rootDx - dx,
H A DSwingUtilities.java1081 int dx, dy;
1094 dx = viewR.x - labelR_x;
1097 dx = (viewR.x + viewR.width) - (labelR_x + labelR_width);
1100 dx = (viewR.x + (viewR.width / 2)) -
1104 /* Translate textR and glypyR by dx,dy.
1107 textR.x += dx;
1110 iconR.x += dx;
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXSurfaceData.java1010 public void blitImage(CRenderer renderer, SunGraphics2D sg2d, SurfaceData img, boolean fliph, boolean flipv, int sx, int sy, int sw, int sh, int dx, int dy, int dw, int dh, Color bgColor) { argument
1025 renderer.doImage(this, img, fliph, flipv, w, h, sx, sy, sw, sh, dx, dy, dw, dh);
1100 protected Rectangle clipCopyArea(SunGraphics2D sg2d, int x, int y, int w, int h, int dx, int dy) { argument
1117 dstCopyAreaRect.setBounds(srcCopyAreaRect.x + dx, srcCopyAreaRect.y + dy, srcCopyAreaRect.width, srcCopyAreaRect.height);
1124 x = dstCopyAreaRect.x - dx;
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArc2D.java944 // Bias the dx and dy by the height and width of the oval.
945 double dx = getHeight() * (p.getX() - getCenterX());
947 setAngleStart(-Math.toDegrees(Math.atan2(dy, dx)));
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DSurfaceData.java679 int x, int y, int w, int h, int dx, int dy)
687 d3dRenderPipe.copyArea(sg2d, x, y, w, h, dx, dy);
678 copyArea(SunGraphics2D sg2d, int x, int y, int w, int h, int dx, int dy) argument
/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>.
430 * @param dx the horizontal 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
/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/classes/java/awt/font/
H A DTextLine.java268 float dx = Math.max(dax, ddx);
270 x += dx;
322 double dx = at.getTranslateX();
324 builder.moveTo(tx += dx, ty += dy);
/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);
1157 int dstOffX = dx+srcOffX;
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.
796 * @param dx The X 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);
814 int dstOffX = dx+srcOffX;
/openjdk7/jdk/src/share/classes/sun/font/
H A DAttributeValues.java890 double dx = tx.getTranslateX();
894 if (dx != 0 || dy != 0) {
898 rtx.getShearX(), rtx.getScaleY(), dx, dy);
/openjdk7/jdk/src/share/classes/java/util/
H A DJapaneseImperialCalendar.java1712 CalendarDate dx = jcal.getCalendarDate(Long.MIN_VALUE, getZone());
1713 fixedDateJan1 = jcal.getFixedDate(dx);
2027 CalendarDate dx = jcal.getCalendarDate(Long.MIN_VALUE, getZone());
2028 int m = dx.getMonth() - 1;
2032 firstDayOfMonth = dx.getDayOfMonth();
/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c442 jfloat ax, ay, dx, dy, bx, by, lx, ly, mx, my; local
497 dx = 0;
520 ax, ay, dx, dy, bx, by, lx, ly, mx, my);
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DShapeSpanIterator.c974 jfloat dx, dy, slope; local
1014 dx = x1 - x0;
1016 slope = dx / dy;
1027 x0 += ystartbump * dx / dy;

Completed in 140 milliseconds

1234567