Searched defs:tx (Results 1 - 25 of 35) sorted by relevance

12

/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRDrawImage.java42 AffineTransform tx, int interpType, int sx1, int sy1, int sx2,
58 sg.getCompClip(), tx, interpType, sx1, sy1, 0, 0, sx2
64 super.renderImageXform(sg, img, tx, interpType, sx1, sy1, sx2, sy2,
41 renderImageXform(SunGraphics2D sg, Image img, AffineTransform tx, int interpType, int sx1, int sy1, int sx2, int sy2, Color bgColor) argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DTexturePaint.java54 double tx; field in class:TexturePaint
69 this.tx = anchor.getX();
91 return new Rectangle2D.Double(tx, ty,
134 xform.translate(tx, ty);
H A DGraphics2D.java984 * [ 1 0 tx ]
988 * @param tx the distance to translate along the x-axis
991 public abstract void translate(double tx, double ty); argument
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DDrawImage.java44 AffineTransform tx, int interpType,
70 tx, interpType,
77 super.renderImageXform(sg, img, tx, interpType,
43 renderImageXform(SunGraphics2D sg, Image img, AffineTransform tx, int interpType, int sx1, int sy1, int sx2, int sy2, Color bgColor) argument
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLDrawImage.java44 AffineTransform tx, int interpType,
82 tx, interpType,
89 super.renderImageXform(sg, img, tx, interpType,
43 renderImageXform(SunGraphics2D sg, Image img, AffineTransform tx, int interpType, int sx1, int sy1, int sx2, int sy2, Color bgColor) argument
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DFontRenderContext.java68 private transient AffineTransform tx; field in class:FontRenderContext
96 * @param tx the transform which is used to scale typographical points
104 public FontRenderContext(AffineTransform tx, argument
107 if (tx != null && !tx.isIdentity()) {
108 this.tx = new AffineTransform(tx);
127 * @param tx the transform which is used to scale typographical points
146 public FontRenderContext(AffineTransform tx, Object aaHint, Object fmHint){ argument
147 if (tx !
[all...]
H A DGraphicAttribute.java162 * @param tx an optional {@link AffineTransform} to apply to the
168 public Shape getOutline(AffineTransform tx) { argument
170 if (tx != null) {
171 b = tx.createTransformedShape(b);
H A DShapeGraphicAttribute.java185 * @param tx an optional {@link AffineTransform} to apply to the
191 public Shape getOutline(AffineTransform tx) { argument
192 return tx == null ? fShape : tx.createTransformedShape(fShape);
H A DTextLayout.java2410 AffineTransform tx = AffineTransform.getTranslateInstance(dx, dy);
2411 result = (GeneralPath)tx.createTransformedShape(result);
2685 * @param tx an optional {@link AffineTransform} to apply to the
2690 public Shape getOutline(AffineTransform tx) { argument
2692 Shape result = textLine.getOutline(tx);
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A De_rem_pio2.c103 double tx[3]; local
178 tx[i] = (double)((int)(z));
179 z = (z-tx[i])*two24;
181 tx[2] = z;
183 while(tx[nx-1]==zero) nx--; /* skip zero term */
184 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi);
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DTransformingPathConsumer2D.java117 private final float tx; field in class:TransformingPathConsumer2D.TranslateFilter
121 float tx, float ty)
124 this.tx = tx;
129 out.moveTo(x0 + tx, y0 + ty);
133 out.lineTo(x1 + tx, y1 + ty);
139 out.quadTo(x1 + tx, y1 + ty,
140 x2 + tx, y2 + ty);
147 out.curveTo(x1 + tx, y1 + ty,
148 x2 + tx, y
120 TranslateFilter(PathConsumer2D out, float tx, float ty) argument
169 private final float tx; field in class:TransformingPathConsumer2D.ScaleFilter
172 ScaleFilter(PathConsumer2D out, float sx, float sy, float tx, float ty) argument
[all...]
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DQuartzSurfaceData.h70 CGFloat tx; member in struct:_statePatternInfo
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DDrawImage.java152 double tx = extraAT.getTranslateX();
154 tx += sg.transform.getTranslateX();
156 int itx = (int) Math.floor(tx + 0.5);
159 (closeToInteger(itx, tx) && closeToInteger(ity, ty)))
198 AffineTransform tx = new AffineTransform(sg.transform);
199 tx.translate(x, y);
200 tx.concatenate(extraAT);
210 transformImage(sg, img, tx, interpType, 0, 0, imgw, imgh, null);
212 renderImageXform(sg, img, tx, interpType, 0, 0, imgw, imgh, null);
230 AffineTransform tx, in
229 transformImage(SunGraphics2D sg, Image img, AffineTransform tx, int interpType, int sx1, int sy1, int sx2, int sy2, Color bgColor) argument
337 renderImageXform(SunGraphics2D sg, Image img, AffineTransform tx, int interpType, int sx1, int sy1, int sx2, int sy2, Color bgColor) argument
837 getTransformColorModel(SunGraphics2D sg, BufferedImage bImg, AffineTransform tx) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLVertexCache.c37 jfloat tx, ty; member in struct:_J2DVertex
51 v->tx = TX; \
/openjdk7/hotspot/src/share/vm/opto/
H A Daddnode.cpp654 const TypeX *tx = t->is_intptr_t(); local
656 if (tx->is_con()) { // Left input is an add of a constant?
657 txoffset = tx->get_con();
H A Dconnode.cpp911 const TypeInt* tx = phase->type(x)->is_int(); local
914 jlong xlo = tx->_lo;
915 jlong xhi = tx->_hi;
921 int widen = MAX2(tx->_widen, ty->_widen);
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DPaints.cpp286 // m02 = tx * m00 + ty * m01 + m02;
287 // m12 = tx * m10 + ty * m11 + m12;
288 jdouble tx = (1 / (2.0f * srcOps->pResource->GetDesc()->Width)); local
290 xp3 = tx * xp0 + ty * xp1 + xp3;
291 yp3 = tx * yp0 + ty * yp1 + yp3;
/openjdk7/jdk/src/share/classes/sun/font/
H A DLayoutPathImpl.java959 private AffineTransform tx; field in class:LayoutPathImpl.EmptyPath
961 public EmptyPath(AffineTransform tx) { argument
962 this.tx = tx;
966 if (tx != null) {
967 tx.transform(location, point);
975 if (tx != null) {
977 tx.inverseTransform(pt, result);
992 if (tx != null) {
993 return tx
[all...]
H A DAttributeValues.java872 public static AffineTransform extractXRotation(AffineTransform tx, argument
874 return extractRotation(new Point2D.Double(1, 0), tx, andTranslation);
877 public static AffineTransform extractYRotation(AffineTransform tx, argument
879 return extractRotation(new Point2D.Double(0, 1), tx, andTranslation);
883 AffineTransform tx, boolean andTranslation) {
885 tx.deltaTransform(pt, pt);
890 double dx = tx.getTranslateX();
891 double dy = tx.getTranslateY();
892 tx.preConcatenate(rtxi);
895 tx
882 extractRotation(Point2D.Double pt, AffineTransform tx, boolean andTranslation) argument
[all...]
H A DStandardGlyphVector.java541 // get the position, the tx offset, and the x,y advance and x,y adl. The
543 // the position plus the tx offset minus the ascent.
969 // returns new tx if old one has translation, otherwise returns old one
970 private static AffineTransform getNonTranslateTX(AffineTransform tx) { argument
971 if (tx.getTranslateX() != 0 || tx.getTranslateY() != 0) {
972 tx = new AffineTransform(tx.getScaleX(), tx.getShearY(),
973 tx
995 setDTX(AffineTransform tx) argument
1591 setupGlyphImages(long[] images, float[] positions, AffineTransform tx) argument
1607 getGlyphsPixelBounds(AffineTransform tx, float x, float y, int start, int count) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DAffineTransform.java604 * [ 1 0 tx ]
608 * @param tx the distance by which coordinates are translated in the
616 public static AffineTransform getTranslateInstance(double tx, double ty) { argument
618 Tx.setToTranslation(tx, ty);
1238 * [ 1 0 tx ]
1242 * @param tx the distance by which coordinates are translated in the
1248 public void translate(double tx, double ty) { argument
1254 m02 = tx * m00 + ty * m01 + m02;
1255 m12 = tx * m10 + ty * m11 + m12;
1264 m02 = tx * m0
1777 setToTranslation(double tx, double ty) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntimeTrig.cpp478 double tx[3]; local
554 tx[i] = (double)((int)(z));
555 z = (z-tx[i])*two24A;
557 tx[2] = z;
559 while(tx[nx-1]==zeroA) nx--; /* skip zero term */
560 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi);
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageScanPoly.c66 mlib_d64 a = mtx[0], b = mtx[1], tx = mtx[2], c = mtx[3], d = mtx[4], ty = mtx[5]; local
192 tx2 = (-d * tx + b * ty);
195 ty2 = (c * tx - a * ty);
200 tx -= 0.5;
203 coords[0][0] = xClip * a + yClip * b + tx;
206 coords[2][0] = wClip * a + hClip * b + tx;
210 coords[1][0] = wClip * a + yClip * b + tx;
213 coords[3][0] = xClip * a + hClip * b + tx;
217 coords[3][0] = wClip * a + yClip * b + tx;
220 coords[1][0] = xClip * a + hClip * b + tx;
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/
H A DImageTests.java226 AffineTransform tx; field in class:ImageTests.Context
666 super(imgtestroot, "drawimagetxform", "drawImage(img, tx, obs);");
680 ictx.tx = new AffineTransform();
690 AffineTransform tx = ictx.tx;
695 tx.setTransform(1.0, 0.1, 0.1, 1.0, x, y);
697 g.drawImage(src, tx, null);
703 tx.setTransform(1.0, 0.1, 0.1, 1.0, x, y);
704 g.drawImage(src, tx, null);
710 tx
[all...]
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DServerImpl.java491 ExchangeImpl tx; field in class:ServerImpl.Exchange
589 tx = new ExchangeImpl (
593 Headers rheaders = tx.getResponseHeaders();
596 tx.close = true;
599 tx.http10 = true;
601 tx.close = true;
644 tx.getRequestBody();
645 tx.getResponseBody();
647 uc.doFilter (new HttpsExchangeImpl (tx));
649 uc.doFilter (new HttpExchangeImpl (tx));
[all...]

Completed in 169 milliseconds

12