Searched refs:y1 (Results 151 - 175 of 230) sorted by relevance

12345678910

/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLRenderer.java152 int x1, int y1, int x2, int y2)
155 oglr.drawLine(sg2d, x1, y1, x2, y2);
151 drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) argument
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DValidatePipe.java60 int x1, int y1, int x2, int y2) {
62 sg.drawpipe.drawLine(sg, x1, y1, x2, y2);
59 drawLine(SunGraphics2D sg, int x1, int y1, int x2, int y2) argument
H A DBufferedRenderPipe.java87 int x1, int y1, int x2, int y2)
97 buf.putInt(y1 + transy);
291 public void drawLine(int x1, int y1, int x2, int y2) { argument
296 buf.putInt(y1);
86 drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) argument
H A DNullPipe.java50 int x1, int y1, int x2, int y2) {
49 drawLine(SunGraphics2D sg, int x1, int y1, int x2, int y2) argument
H A DRegion.java398 int y1, y2;
399 newbands[j++] = y1 = clipScale(bands[i++], sy);
403 if (y1 < y2) {
502 int y1, y2;
503 newbands[j++] = y1 = clipAdd(bands[i++], dy);
507 if (y1 < y2) {
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntimeTrans.cpp511 double y1,t1,t2,r,s,t,u,v,w; local
670 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
671 y1 = y;
672 __LO(y1) = 0;
673 p_l = (y-y1)*t1+y*t2;
674 p_h = y1*t1;
/openjdk7/jdk/src/windows/classes/sun/java2d/windows/
H A DGDIRenderer.java51 int x1, int y1, int x2, int y2);
54 int x1, int y1, int x2, int y2)
61 x1+transx, y1+transy, x2+transx, y2+transy);
341 int x1, int y1, int x2, int y2)
344 super.doDrawLine(sData, clip, comp, color, x1, y1, x2, y2);
49 doDrawLine(GDIWindowSurfaceData sData, Region clip, Composite comp, int color, int x1, int y1, int x2, int y2) argument
53 drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) argument
339 doDrawLine(GDIWindowSurfaceData sData, Region clip, Composite comp, int color, int x1, int y1, int x2, int y2) argument
/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11Renderer.java82 int x1, int y1, int x2, int y2);
84 public void drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) { argument
91 x1+transx, y1+transy, x2+transx, y2+transy);
423 int x1, int y1, int x2, int y2)
426 super.XDrawLine(pXSData, xgc, x1, y1, x2, y2);
81 XDrawLine(long pXSData, long xgc, int x1, int y1, int x2, int y2) argument
422 XDrawLine(long pXSData, long xgc, int x1, int y1, int x2, int y2) argument
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageRepresentation.java373 int y1 = y+h; // Overflow protection below
383 } else if (y1 < 0) {
384 y1 = biHeight; // Must be overflow
389 if (y1 > biHeight) {
390 y1 = biHeight;
392 if (x >= x1 || y >= y1) {
395 // x,y,x1,y1 are all >= 0, so w,h must be >= 0
397 h = y1-y;
/openjdk7/jdk/src/share/classes/sun/awt/
H A DNullComponentPeer.java258 public void flip(int x1, int y1, int x2, int y2, argument
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPlatformEmbeddedFrame.java127 public void flip(int x1, int y1, int x2, int y2, FlipContents flipAction) { argument
H A DCViewPlatformEmbeddedFrame.java222 public void flip(int x1, int y1, int x2, int y2, FlipContents flipAction) { argument
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_ByteIndexed.c120 DstWriteYDither = (pDstInfo->bounds.y1 & 7) << 3; \
168 DstWriteYDither = (pDstInfo->bounds.y1 & 7) << 3; \
229 DstWriteYDither = (pDstInfo->bounds.y1 & 7) << 3; \
471 DstWriteYDither = (pDstInfo->bounds.y1 & 7) << 3;
/openjdk7/jdk/src/share/native/java/lang/fdlibm/include/
H A Dfdlibm.h155 extern double y1 __P((double));
/openjdk7/jdk/src/share/native/sun/java2d/
H A DSurfaceData.h44 * All coordinates (x1 <= x < x2, y1 <= y < y2) are considered to
49 jint y1; member in struct:__anon811
66 * (bounds.y1 <= y < bounds.y2).
/openjdk7/jdk/test/javax/swing/plaf/metal/MetalBumps/
H A DTest6657026.java151 public void drawLine(int x1, int y1, int x2, int y2) { argument
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLContext.c226 jint x1, jint y1, jint x2, jint y2)
229 jint height = y2 - y1;
233 x1, y1, width, height);
253 dstOps->yOffset + dstOps->height - (y1 + height),
225 OGLContext_SetRectClip(OGLContext *oglc, OGLSDOps *dstOps, jint x1, jint y1, jint x2, jint y2) argument
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaButtonLabeledUI.java213 final int y1 = Math.min(prefIconRect.y, prefTextRect.y);
216 int height = y2 - y1;
/openjdk7/jdk/test/sun/java2d/OpenGL/
H A DGradientPaints.java255 int y1 = 0;
259 for (int y = y1; y < y2; y++) {
/openjdk7/jdk/src/share/classes/sun/print/
H A DProxyGraphics.java357 * <code>(x1,&nbsp;y1)</code> and <code>(x2,&nbsp;y2)</code>
360 * @param y1 the first point's <i>y</i> coordinate.
364 public void drawLine(int x1, int y1, int x2, int y2) { argument
365 g.drawLine(x1, y1, x2, y2);
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DMaskTileManager.java100 public void addLine(int x1, int y1, int x2, int y2) { argument
101 mainTile.addLine(x1, y1, x2, y2);
H A DXRBackendNative.java107 int x1, int y1, int x2, int y2,
123 int x1, int y1, int x2, int y2,
105 XRCreateLinearGradientPaintNative(float[] fractionsArray, short[] pixelsArray, int x1, int y1, int x2, int y2, int numStops, int repeat, int m00, int m01, int m02, int m10, int m11, int m12) argument
122 XRSetClipNative(long dst, int x1, int y1, int x2, int y2, Region clip, boolean isGC) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTableUI.java645 int y1 = vacatedColumnRect.y;
647 int y2 = y1 + vacatedColumnRect.height - 1;
649 synthG.drawLine(context, "Table.grid", g, x1-1, y1, x1-1, y2);
651 synthG.drawLine(context, "Table.grid", g, x2, y1, x2, y2);
666 int y1 = rcr.y;
668 int y2 = y1 + rcr.height - 1;
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java455 double y1 = Math.max(r.getY(), r2.getY());
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);
2532 double x0,x1,y0,y1;
2534 y0 = y1 = p[1];
2546 } else if (pt > y1) {
2547 y1
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DContext.cpp984 D3DContext::SetRectClip(int x1, int y1, int x2, int y2) argument
992 " x1=%-4d y1=%-4d x2=%-4d y2=%-4d",
993 x1, y1, x2, y2);
1008 if (x1 <= 0 && y1 <= 0 &&
1019 if (y1 < 0) y1 = 0;
1023 if (y1 > y2) y2 = y1 = 0;
1024 RECT newRect = { x1, y1, x2, y2 };
1030 " x1=%-4d y1
[all...]

Completed in 263 milliseconds

12345678910