Searched refs:y2 (Results 151 - 175 of 198) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java4073 void flipSubRegion(int x1, int y1, int x2, int y2, argument
4077 peer.flip(x1, y1, x2, y2, flipAction);
4196 void showSubRegion(int x1, int y1, int x2, int y2) { argument
4197 flipSubRegion(x1, y1, x2, y2, caps.getFlipContents());
4369 void showSubRegion(int x1, int y1, int x2, int y2) { argument
4377 y2 -= insets.top;
4389 x1, y1, x2, y2,
4390 x1, y1, x2, y2,
4482 public void show(int x1, int y1, int x2, int y2) { argument
4483 showSubRegion(x1, y1, x2, y2);
4487 showIfNotLost(int x1, int y1, int x2, int y2) argument
4512 show(int x1, int y1, int x2, int y2) argument
4517 showIfNotLost(int x1, int y1, int x2, int y2) argument
[all...]
H A DGraphics.java388 * <code>(x1,&nbsp;y1)</code> and <code>(x2,&nbsp;y2)</code>
393 * @param y2 the second point's <i>y</i> coordinate.
395 public abstract void drawLine(int x1, int y1, int x2, int y2); argument
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCFileDialog.java286 public void flip(int x1, int y1, int x2, int y2, FlipContents flipAction) { argument
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_p.h119 int y2; member in struct:_DamageRect
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageAffine_BL.c175 mlib_s32 off, x0, x1, x2, x3, y0, y1, y2, y3; variable
195 x2 = x1 + dX; y2 = y1 + dY;
196 x3 = x2 + dX; y3 = y2 + dY;
199 deltay = DOUBLE_4U16(y0, y1, y2, y3);
H A Dmlib_v_ImageAffine_BL_S16.c232 mlib_s32 x0, x1, x2, x3, y0, y1, y2, y3; variable
255 x2 = x1 + dX; y2 = y1 + dY;
256 x3 = x2 + dX; y3 = y2 + dY;
259 deltay = DOUBLE_4U16(y0, y1, y2, y3);
H A Dmlib_v_ImageAffine_BL_U16.c225 mlib_s32 x0, x1, x2, x3, y0, y1, y2, y3; variable
248 x2 = x1 + dX; y2 = y1 + dY;
249 x3 = x2 + dX; y3 = y2 + dY;
252 deltay = DOUBLE_4U16(y0, y1, y2, y3);
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DXRBackendNative.c450 jshortArray pixelsArray, jint x1, jint y1, jint x2, jint y2,
477 grad.p2.y = y2;
610 jint x1, jint y1, jint x2, jint y2,
618 x1, y1, x2, y2, complexclip,
448 Java_sun_java2d_xr_XRBackendNative_XRCreateLinearGradientPaintNative(JNIEnv *env, jclass xsd, jfloatArray fractionsArray, jshortArray pixelsArray, jint x1, jint y1, jint x2, jint y2, jint numStops, jint repeat, jint m00, jint m01, jint m02, jint m10, jint m11, jint m12) argument
608 Java_sun_java2d_xr_XRBackendNative_XRSetClipNative(JNIEnv *env, jclass xsd, jlong dst, jint x1, jint y1, jint x2, jint y2, jobject complexclip, jboolean isGC) argument
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DContext.h201 HRESULT SetRectClip(int x1, int y1, int x2, int y2);
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderQueue.c104 jint y2 = NEXT_INT(b); local
105 OGLRenderer_DrawLine(oglc, x1, y1, x2, y2);
367 jint y2 = NEXT_INT(b); local
368 OGLContext_SetRectClip(oglc, dstOps, x1, y1, x2, y2);
H A DOGLContext.c226 jint x1, jint y1, jint x2, jint y2)
229 jint height = y2 - y1;
225 OGLContext_SetRectClip(OGLContext *oglc, OGLSDOps *dstOps, jint x1, jint y1, jint x2, jint y2) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDebugGraphics.java509 public void drawLine(int x1, int y1, int x2, int y2) { argument
515 " to " + pointToString(x2, y2));
522 debugGraphics.drawLine(x1, y1, x2, y2);
531 graphics.drawLine(x1, y1, x2, y2);
537 graphics.drawLine(x1, y1, x2, y2);
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java456 double y2 = Math.min(r.getY() + r.getHeight(),
459 if (((x2 - x1) < 0) || ((y2 - y1) < 0))
463 outrect.setFrameFromDiagonal(x1, y1, x2, y2);
2167 public void drawLine(int x1, int y1, int x2, int y2) { argument
2169 drawpipe.drawLine(this, x1, y1, x2, y2);
2173 drawpipe.drawLine(this, x1, y1, x2, y2);
2703 int y2 = Math.min(destRect.y + destRect.height, clip.y + clip.height);
2704 if (((x2 - x1) < 0) || ((y2 - y1) < 0)) {
2712 destRect.height = y2 - y1;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableUI.java2078 int y2 = y1 + vacatedColumnRect.height - 1;
2080 g.drawLine(x1-1, y1, x1-1, y2);
2082 g.drawLine(x2, y1, x2, y2);
2099 int y2 = y1 + rcr.height - 1;
2100 g.drawLine(x1, y2, x2, y2);
H A DBasicLabelUI.java242 int y2 = Math.max(iconR.y + iconR.height, textR.y + textR.height);
243 Dimension rv = new Dimension(x2 - x1, y2 - y1);
/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) { argument
54 line.setLine(x1, y1, x2, y2);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DBorderedComponent.java509 int y2 = Math.min(ry + rh, dest.y + dest.height);
513 dest.height = y2 - y1;
/openjdk7/jdk/src/share/classes/sun/print/
H A DPeekGraphics.java505 * <code>(x1,&nbsp;y1)</code> and <code>(x2,&nbsp;y2)</code>
510 * @param y2 the second point's <i>y</i> coordinate.
513 public void drawLine(int x1, int y1, int x2, int y2) { argument
514 addStrokeShape(new Line2D.Float(x1, y1, x2, y2));
H A DProxyGraphics2D.java441 * <code>(x1,&nbsp;y1)</code> and <code>(x2,&nbsp;y2)</code>
446 * @param y2 the second point's <i>y</i> coordinate.
449 public void drawLine(int x1, int y1, int x2, int y2) { argument
450 mGraphics.drawLine(x1, y1, x2, y2);
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DCurve.java742 public static long signeddiffbits(double y1, double y2) { argument
743 return (Double.doubleToLongBits(y1) - Double.doubleToLongBits(y2));
745 public static long diffbits(double y1, double y2) { argument
747 Double.doubleToLongBits(y2));
/openjdk7/jdk/src/share/native/sun/awt/image/
H A DBufImgSurfaceData.c140 bisdo->rasbounds.y2 = height;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXEmbedChildProxyPeer.java264 public void flip(int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction) { } argument
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11GraphicsConfig.java448 int x1, int y1, int x2, int y2,
446 flip(X11ComponentPeer peer, Component target, VolatileImage xBackBuffer, int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction) argument
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWWindowPeer.java333 public void flip(int x1, int y1, int x2, int y2, argument
342 g.drawImage(buffer, x1, y1, x2, y2, x1, y1, x2, y2, null);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKColorChooserPanel.java937 double y2 = Math.sin(Math.toRadians(-30.0)) * x1 +
939 float value = Math.min(1.0f, (float)((innerR - y2) /
941 float maxX = (float)(Math.tan(Math.toRadians(30)) * (innerR - y2));

Completed in 126 milliseconds

12345678