Searched defs:y1 (Results 1 - 25 of 140) sorted by relevance

123456

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Dw_j1.c28 * wrapper of j1,y1
54 double y1(double x) /* wrapper y1 */ function
56 double y1(x) /* wrapper y1 */
75 return __kernel_standard(x,x,37); /* y1(x>X_TLOSS) */
H A De_hypot.c43 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
45 * y1= y with lower 32 bits chopped, y2 = y-y1.
68 double a=x,b=y,t1,t2,y1,y2,w; local
115 y1 = 0;
116 __HI(y1) = hb;
117 y2 = b - y1;
121 w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSubRegionShowable.java39 public void show(int x1, int y1, int x2, int y2); argument
48 public boolean showIfNotLost(int x1, int y1, int x2, int y2); argument
/openjdk7/jdk/test/java/awt/Mouse/MouseModifiersUnitTest/
H A DExtraButtonDrag.java104 public static void dragMouse(int button, int x0, int y0, int x1, int y1){ argument
108 int dy = y0 < y1 ? 1 : -1;
122 while (curY != y1 ){
/openjdk7/jdk/test/sun/security/pkcs11/KeyAgreement/
H A DTestShort.java52 private final static BigInteger y1 = new BigInteger field in class:TestShort
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DPathConsumer2D.java42 public void quadTo(float x1, float y1, argument
48 public void curveTo(float x1, float y1, argument
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWCanvasPeer.java76 public void flip(final int x1, final int y1, final int x2, final int y2, argument
84 g.drawImage(buffer, x1, y1, x2, y2, x1, y1, x2, y2, null);
/openjdk7/jdk/test/java/beans/Statement/
H A DTest4530962.java71 public void m(Y y1, X x2) { argument
93 public void m(Y y1, Y y2) { argument
110 public void m(Y y1, Y y2) { argument
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DPoint2D.java281 * @param y1 the Y coordinate of the first specified point
288 public static double distanceSq(double x1, double y1, argument
292 y1 -= y2;
293 return (x1 * x1 + y1 * y1);
300 * @param y1 the Y coordinate of the first specified point
307 public static double distance(double x1, double y1, argument
311 y1 -= y2;
312 return Math.sqrt(x1 * x1 + y1 * y1);
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DGradientPaint.java71 * @param y1 y coordinate of the first specified
84 float y1,
93 p1 = new Point2D.Float(x1, y1);
130 * @param y1 y coordinate of the first specified
144 float y1,
150 this (x1, y1, color1, x2, y2, color2);
83 GradientPaint(float x1, float y1, Color color1, float x2, float y2, Color color2) argument
143 GradientPaint(float x1, float y1, Color color1, float x2, float y2, Color color2, boolean cyclic) argument
H A DGradientPaintContext.java83 double y1; field in class:GradientPaintContext
157 this.y1 = dp1.getY();
227 double rowrel = (x - x1) * dx + (y - y1) * dy;
/openjdk7/jdk/test/java/awt/Paint/
H A DPgramUserBoundsTest.java93 static void testLine(Graphics2D g2d, int x1, int y1, int x2, int y2) { argument
94 g2d.drawLine(x1, y1, x2, y2);
95 g2d.draw(new Line2D.Double(x1, y1, x2, y2));
102 public BoundsCheckerPaint(double x1, double y1, argument
106 expectedBounds.setFrameFromDiagonal(x1, y1, x2, y2);
/openjdk7/jdk/test/java/beans/XMLDecoder/spec/
H A DTestMethod.java117 public void m(Y y1, X x2) { argument
139 public void m(Y y1, Y y2) { argument
156 public void m(Y y1, Y y2) { argument
/openjdk7/jdk/test/javax/swing/ToolTipManager/7123767/
H A Dbug7123767.java198 private static void glide(int x0, int y0, int x1, int y1) throws AWTException { argument
204 float dmax = (float) Math.max(Math.abs(x1 - x0), Math.abs(y1 - y0));
206 float dy = (y1 - y0) / dmax;
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DDrawLine.java78 int x1, int y1, int x2, int y2);
108 int x1, int y1, int x2, int y2)
111 target.DrawLine(sg2d, dest, x1, y1, x2, y2);
77 DrawLine(SunGraphics2D sg2d, SurfaceData dest, int x1, int y1, int x2, int y2) argument
107 DrawLine(SunGraphics2D sg2d, SurfaceData dest, int x1, int y1, int x2, int y2) argument
H A DDrawRect.java79 int x1, int y1, int w, int h);
109 int x1, int y1, int w, int h)
112 target.DrawRect(sg2d, dest, x1, y1, w, h);
78 DrawRect(SunGraphics2D sg2d, SurfaceData dest, int x1, int y1, int w, int h) argument
108 DrawRect(SunGraphics2D sg2d, SurfaceData dest, int x1, int y1, int w, int h) argument
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DPixelDrawPipe.java44 int x1, int y1, int x2, int y2);
43 drawLine(SunGraphics2D sg, int x1, int y1, int x2, int y2) argument
H A DPixelToShapeConverter.java51 int x1, int y1, int x2, int y2) {
52 outpipe.draw(sg, new Line2D.Float(x1, y1, x2, y2));
50 drawLine(SunGraphics2D sg, int x1, int y1, int x2, int y2) argument
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DDirtyRegion.java92 public void setDirtyLineRegion(int x1, int y1, int x2, int y2) { argument
101 if (y1 < y2) {
102 this.y = y1;
106 this.y2 = y1;
H A DMaskTile.java52 public void addLine(int x1, int y1, int x2, int y2) { argument
59 region.setDirtyLineRegion(x1, y1, x2, y2);
67 addRect(x1, y1, 1, 1);
70 lineToRects(x1, y1, x2, y2);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DMap.java262 int y1; field in class:Map.RectangleRegionContainment
276 y1 = coords[3];
277 if (x0 < 0 || y0 < 0 || x1 < 0 || y1 < 0) {
310 y1 = (int)(percents[3] * height);
318 (y >= y0 && y <= y1));
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaToolBarUI.java59 protected void fillHandle(final Graphics g, final int x1, final int y1, final int x2, final int y2, final boolean horizontal) { argument
62 final int h = y2 - y1 - 2;
63 g.fillRect(x1 + 2, y1 + 1, 1, h);
64 g.fillRect(x1 + 5, y1 + 1, 1, h);
67 g.fillRect(x1 + 1, y1 + 2, w, 1);
68 g.fillRect(x1 + 1, y1 + 5, w, 1);
/openjdk7/jdk/src/macosx/classes/sun/awt/
H A DCGraphicsConfig.java161 int x1, int y1, int x2, int y2,
159 flip(CPlatformView delegate, Component target, VolatileImage xBackBuffer, int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction) argument
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DDrawPath.c38 jint x0, jint y0, jint x1, jint y1)
45 x0, y0, x1, y1, 0);
120 rasInfo.bounds.y2 > rasInfo.bounds.y1);
127 rasInfo.bounds.y2 > rasInfo.bounds.y1)
155 drawHandler.yMin = rasInfo.bounds.y1;
37 processLine(DrawHandler* hnd, jint x0, jint y0, jint x1, jint y1) argument
/openjdk7/jdk/src/share/demo/applets/DrawTest/
H A DDrawTest.java112 int x1, y1; field in class:DrawPanel
144 lines.add(new Rectangle(x1, y1, e.getX(), e.getY()));
146 y1 = e.getY();
162 y1 = e.getY();
170 y1 = e.getY();
182 lines.add(new Rectangle(x1, y1, e.getX(), e.getY()));
222 g.drawLine(x1, y1, x2, y2);

Completed in 112 milliseconds

123456