Searched refs:y2 (Results 126 - 150 of 198) sorted by relevance

12345678

/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/macosx/native/sun/awt/
H A DQuartzSurfaceData.m292 //fprintf(stderr, "BOUNDING BOX x1=%f, y1=%f x2=%f, y2=%f\n", bounds.origin.x, bounds.origin.y, bounds.origin.x+bounds.size.width, bounds.origin.y+bounds.size.height);
298 CGFloat y2 = shadingInfo->end.y;
299 //fprintf(stderr, "GIVEN x1=%f, y1=%f x2=%f, y2=%f\n", x1, y1, x2, y2);
304 y2 = y1 + bounds.size.height;
306 else if (y1 == y2)
314 CGFloat m1 = (y2-y1)/(x2-x1);
373 y2 = y2Anew;
378 y2 = y2Bnew;
380 //fprintf(stderr, "--- NEW x2=%f, y2
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/
H A DSurfaceData.h44 * All coordinates (x1 <= x < x2, y1 <= y < y2) are considered to
51 jint y2; 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/classes/sun/java2d/pipe/
H A DBufferedRenderPipe.java87 int x1, int y1, int x2, int y2)
99 buf.putInt(y2 + transy);
291 public void drawLine(int x1, int y1, int x2, int y2) { argument
298 buf.putInt(y2);
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;
400 newbands[j++] = y2 = clipScale(bands[i++], sy);
403 if (y1 < y2) {
502 int y1, y2;
504 newbands[j++] = y2 = clipAdd(bands[i++], dy);
507 if (y1 < y2) {
H A DLoopPipe.java58 int x1, int y1, int x2, int y2)
64 x2 + tX, y2 + tY);
57 drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) argument
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaButtonLabeledUI.java214 final int y2 = Math.max(prefIconRect.y + prefIconRect.height, prefTextRect.y + prefTextRect.height);
216 int height = y2 - y1;
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DDrawParallelogram.c147 if (rasInfo.bounds.y2 <= rasInfo.bounds.y1 ||
160 iy2 = rasInfo.bounds.y2;
H A DGraphicsPrimitiveMgr.c164 if (bounds->y2 > ymax) bounds->y2 = ymax;
167 bounds->y2 = bounds->y1;
/openjdk7/jdk/test/sun/java2d/OpenGL/
H A DGradientPaints.java257 int y2 = refImg.getHeight();
259 for (int y = y1; y < y2; y++) {
H A DDrawBufImgOp.java374 int y2 = refImg.getHeight();
376 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>
362 * @param y2 the second 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 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.java647 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);
668 int y2 = y1 + rcr.height - 1;
669 synthG.drawLine(context, "Table.grid", g, x1, y2, x2, y2);
/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);
1009 (UINT)x2 >= desc.Width && (UINT)y2 >= desc.Height)
1021 if ((UINT)y2 > desc.Height) y2 = desc.Height;
1023 if (y1 > y2) y2 = y1 = 0;
1024 RECT newRect = { x1, y1, x2, y2 };
1030 " x1=%-4d y1=%-4d x2=%-4d y2
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsgamma.c854 cmsFloat64Number a = 0, b = 0, y, x1, y1, x2, y2; local
891 y2 = (cmsFloat64Number) ((j+1) * 65535.0 ) / (InCurve ->nEntries - 1);
896 out ->Table16[i] = _cmsQuickSaturateWord(Ascending ? y2 : y1);
902 a = (y2 - y1) / (x2 - x1);
903 b = y2 - a * x2;
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DSurfaceData.java735 final int x2, final int y2)
748 target.repaint(x1, y1, x2, y2);
764 buf.putInt(y2);
733 swapBuffers(D3DSurfaceData sd, final int x1, final int y1, final int x2, final int y2) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollbar.java136 int y2 = (up ? getArrowWidth() : barLength - getArrowWidth() - ARROW_IND);
138 arrow.addPoint(x + getArrowWidth(), y2);
139 arrow.addPoint(x, y2);
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLayout.java1646 double x2 = -3141.59, y2 = -2.7; // values are there to make compiler happy
1679 y2 = top;
1693 y2 = bottom;
1725 y2 = y1 - (left-x1)/slope;
1739 y2 = y0 - (right-x0)/slope;
1746 new double[] { x0, y0, x2, y2, x1, y1 } :
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalUtils.java374 Color c1, float x2, float y2,
376 return new GradientPaint(x1, y1, c1, x2, y2, c2, true);
373 getGradient(float x1, float y1, Color c1, float x2, float y2, Color c2) argument
/openjdk7/jdk/src/macosx/classes/sun/java2d/opengl/
H A DCGLGraphicsConfig.java367 int x1, int y1, int x2, int y2,
386 pView.drawImageOnPeer(xBackBuffer, x1, y1, x2, y2);
365 flip(CPlatformView pView, Component target, VolatileImage xBackBuffer, int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction) argument

Completed in 86 milliseconds

12345678