Searched defs:x2 (Results 51 - 75 of 149) sorted by relevance

123456

/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DTestN1.java70 Inner3(X1 x1, X2 x2, X3 x3, T1 t1, T2 t2) {} argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DList.java94 public static <A> List<A> of(A x1, A x2) { argument
95 return new List<A>(x1, of(x2));
100 public static <A> List<A> of(A x1, A x2, A x3) { argument
101 return new List<A>(x1, of(x2, x3));
107 public static <A> List<A> of(A x1, A x2, A x3, A... rest) { argument
108 return new List<A>(x1, new List<A>(x2, new List<A>(x3, from(rest))));
/openjdk7/jdk/src/share/demo/management/MemoryMonitor/
H A DMemoryMonitor.java197 public void plotMemoryUsage(int x1, int y1, int x2, int y2, int npool) { argument
217 big.drawString(mp.getName(), x1+x2/2, (float) y1 + ascent+0.5f);
230 float remainingWidth = (float) (x2 - blockWidth - 10);
/openjdk7/jdk/src/share/native/sun/java2d/
H A DSurfaceData.c177 GETMIN(dst->x2, src->x2);
183 jint x1, jint y1, jint x2, jint y2)
188 GETMIN(bounds->x2, x2);
203 if (bounds->x2 > w) {
204 bounds->x2 = w;
226 GETMIN(dst->x2, src->x2 + dx);
230 GETMIN(src->x2, ds
182 SurfaceData_IntersectBoundsXYXY(SurfaceDataBounds *bounds, jint x1, jint y1, jint x2, jint y2) argument
[all...]
H A DSurfaceData.h44 * All coordinates (x1 <= x < x2, y1 <= y < y2) are considered to
50 jint x2; member in struct:__anon811
65 * for each x, y pair such that (bounds.x1 <= x < bounds.x2) and
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DDrawLine.c38 RefineBounds(SurfaceDataBounds *bounds, jint x1, jint y1, jint x2, jint y2) argument
41 if (x1 < x2) {
43 max = x2;
45 min = x2;
54 if (bounds->x2 > max) bounds->x2 = max;
111 cxmax = pBounds->x2 - 1; \
390 jint x1, jint y1, jint x2, jint y2)
413 RefineBounds(&rasInfo.bounds, x1, y1, x2, y2);
419 if (rasInfo.bounds.x2 > rasInf
387 Java_sun_java2d_loops_DrawLine_DrawLine(JNIEnv *env, jobject self, jobject sg2d, jobject sData, jint x1, jint y1, jint x2, jint y2) argument
[all...]
H A DDrawPolygons.c53 if (bounds->x2 > xmax) bounds->x2 = xmax;
56 bounds->x2 = bounds->x1;
80 jint x2 = transX + *xPointsPtr++; local
82 empty = (empty && x1 == x2 && y1 == y2);
85 x1, y1, x2, y2,
87 x1 = x2;
199 ok = (rasInfo.bounds.x2 > rasInfo.bounds.x1 &&
207 rasInfo.bounds.x2 > rasInfo.bounds.x1 &&
H A DScaledBlit.c364 srcInfo.bounds.x2 = sx2;
369 if (srcInfo.bounds.x2 <= srcInfo.bounds.x1 ||
391 dstInfo.bounds.x1 = dstInfo.bounds.x2 = idx1;
392 if (x >= srcInfo.bounds.x1 && x < srcInfo.bounds.x2) {
393 dstInfo.bounds.x2++;
400 dstInfo.bounds.x2 = refine(idx1, ddx1, tilesize, scalex,
401 (srcInfo.bounds.x2-sx1) << shift, sxinc);
428 if (dstInfo.bounds.x2 > dstInfo.bounds.x1 &&
463 span.x2-span.x1, span.y2-span.y1,
474 jint x1, y1, x2, y local
[all...]
/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 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
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 DPixelToParallelogramConverter.java78 int x1, int y1, int x2, int y2)
80 if (!drawGeneralLine(sg2d, x1, y1, x2, y2)) {
81 super.drawLine(sg2d, x1, y1, x2, y2);
199 double x1, y1, x2, y2;
208 x2 = coords[2];
219 x2 = ux2 + tx;
226 x2 = ux2;
240 int ix2 = (int) Math.floor(x2 - sg2d.transX);
247 x2 = normalize(x2);
77 drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) argument
[all...]
H A DShapeSpanIterator.java194 float x2, float y2);
196 float x2, float y2,
193 quadTo(float x1, float y1, float x2, float y2) argument
195 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DCurve.java57 float x2, float y2,
61 ax = 3 * (x2 - x3) + x4 - x1;
63 bx = 3 * (x1 - 2 * x2 + x3);
65 cx = 3 * (x2 - x1);
74 float x2, float y2,
79 bx = x1 - 2 * x2 + x3;
81 cx = 2 * (x2 - x1);
56 set(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4) argument
73 set(float x1, float y1, float x2, float y2, float x3, float y3) argument
H A DHelpers.java205 static float linelen(float x1, float y1, float x2, float y2) { argument
206 final float dx = x2 - x1;
278 float x2 = src[srcoff + 6];
285 right[rightoff + 6] = x2;
290 x2 = (x2 + ctrlx2) / 2.0f;
296 ctrlx2 = (x2 + centerx) / 2.0f;
313 right[rightoff + 4] = x2;
329 float x2 = src[srcoff + 6];
336 right[rightoff + 6] = x2;
[all...]
/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);
191 int width = tileDirtyArea.x2 - tileDirtyArea.x;
H A DXRRenderer.java71 public void drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) { argument
82 x2 + transx, y2 + transy);
193 public void drawLine(int x1, int y1, int x2, int y2) { argument
194 tileManager.addLine(x1, y1, x2, y2);
201 public void drawScanline(int x1, int x2, int y) { argument
202 tileManager.addRect(x1, y, x2 - x1 + 1, 1);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthGraphicsUtils.java72 * @param x2 x destination
76 Graphics g, int x1, int y1, int x2, int y2) {
77 g.drawLine(x1, y1, x2, y2);
94 * @param x2 x destination
100 Graphics g, int x1, int y1, int x2, int y2,
104 if (x1 == x2) {
108 g.drawLine(x1, y, x2, y);
114 for (int x = x1; x <= x2; x+=2) {
120 drawLine(context, paintKey, g, x1, y1, x2, y2);
295 int x2
75 drawLine(SynthContext context, Object paintKey, Graphics g, int x1, int y1, int x2, int y2) argument
99 drawLine(SynthContext context, Object paintKey, Graphics g, int x1, int y1, int x2, int y2, Object styleKey) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArc2D.java961 * @param x2 The X coordinate of the arc's ending point.
965 public void setAngles(double x1, double y1, double x2, double y2) { argument
974 double ang2 = Math.atan2(w * (y - y2), h * (x2 - x));
1054 double x1, y1, x2, y2;
1056 x1 = y1 = x2 = y2 = 0.0;
1059 x2 = y2 = -1.0;
1081 x2 = Math.max(x2, xe);
1086 x2 = (x2
[all...]
H A DCubicCurve2D.java112 public float x2; field in class:CubicCurve2D.Float
146 * @param x2 the X coordinate for the end point
155 float x2, float y2)
157 setCurve(x1, y1, ctrlx1, ctrly1, ctrlx2, ctrly2, x2, y2);
237 return (double) x2;
253 return new Point2D.Float(x2, y2);
263 double x2, double y2)
271 this.x2 = (float) x2;
291 * @param x2 th
152 Float(float x1, float y1, float ctrlx1, float ctrly1, float ctrlx2, float ctrly2, float x2, float y2) argument
260 setCurve(double x1, double y1, double ctrlx1, double ctrly1, double ctrlx2, double ctrly2, double x2, double y2) argument
297 setCurve(float x1, float y1, float ctrlx1, float ctrly1, float ctrlx2, float ctrly2, float x2, float y2) argument
395 public double x2; field in class:CubicCurve2D.Double
435 Double(double x1, double y1, double ctrlx1, double ctrly1, double ctrlx2, double ctrly2, double x2, double y2) argument
543 setCurve(double x1, double y1, double ctrlx1, double ctrly1, double ctrlx2, double ctrly2, double x2, double y2) argument
715 setCurve(double x1, double y1, double ctrlx1, double ctrly1, double ctrlx2, double ctrly2, double x2, double y2) argument
808 getFlatnessSq(double x1, double y1, double ctrlx1, double ctrly1, double ctrlx2, double ctrly2, double x2, double y2) argument
842 getFlatness(double x1, double y1, double ctrlx1, double ctrly1, double ctrlx2, double ctrly2, double x2, double y2) argument
1368 oppositeSigns(double x1, double x2) argument
[all...]
H A DQuadCurve2D.java92 public float x2; field in class:QuadCurve2D.Float
118 * @param x2 the X coordinate of the end point
124 float x2, float y2)
126 setCurve(x1, y1, ctrlx, ctrly, x2, y2);
182 return (double) x2;
198 return new Point2D.Float(x2, y2);
207 double x2, double y2)
213 this.x2 = (float) x2;
225 * @param x2 th
122 Float(float x1, float y1, float ctrlx, float ctrly, float x2, float y2) argument
205 setCurve(double x1, double y1, double ctrlx, double ctrly, double x2, double y2) argument
229 setCurve(float x1, float y1, float ctrlx, float ctrly, float x2, float y2) argument
305 public double x2; field in class:QuadCurve2D.Double
335 Double(double x1, double y1, double ctrlx, double ctrly, double x2, double y2) argument
418 setCurve(double x1, double y1, double ctrlx, double ctrly, double x2, double y2) argument
547 setCurve(double x1, double y1, double ctrlx, double ctrly, double x2, double y2) argument
628 getFlatnessSq(double x1, double y1, double ctrlx, double ctrly, double x2, double y2) argument
649 getFlatness(double x1, double y1, double ctrlx, double ctrly, double x2, double y2) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DComponentPeer.java489 * @param x2 the area to be flipped, lower right X coordinate
495 void flip(int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction); argument
/openjdk7/hotspot/src/share/vm/opto/
H A Daddnode.cpp145 Node *x2 = phase->makecon( add1->as_Add()->add_ring( t2, t12 )); local
148 set_req_X(2,x2,igvn);
151 set_req(2,x2);
/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphics.java388 * <code>(x1,&nbsp;y1)</code> and <code>(x2,&nbsp;y2)</code>
392 * @param x2 the second point's <i>x</i> coordinate.
395 public abstract void drawLine(int x1, int y1, int x2, int y2); argument
/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);

Completed in 184 milliseconds

123456