Searched defs:ty (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DTexturePaint.java55 double ty; field in class:TexturePaint
70 this.ty = anchor.getY();
91 return new Rectangle2D.Double(tx, ty,
134 xform.translate(tx, ty);
H A DGraphics2D.java985 * [ 0 1 ty ]
989 * @param ty the distance to translate along the y-axis
991 public abstract void translate(double tx, double ty); argument
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DTransformingPathConsumer2D.java118 private final float ty; field in class:TransformingPathConsumer2D.TranslateFilter
121 float tx, float ty)
125 this.ty = ty;
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, y2 + ty,
120 TranslateFilter(PathConsumer2D out, float tx, float ty) argument
170 private final float ty; 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.h71 CGFloat ty; member in struct:_statePatternInfo
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLVertexCache.c37 jfloat tx, ty; member in struct:_J2DVertex
52 v->ty = TY; \
/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;
289 jdouble ty = (1 / (2.0f * srcOps->pResource->GetDesc()->Height)); local
290 xp3 = tx * xp0 + ty * xp1 + xp3;
291 yp3 = tx * yp0 + ty * yp1 + yp3;
H A DD3DContext.cpp153 D3DUtils_2DTranslateM(D3DMATRIX *m, float tx, float ty) argument
155 m->_41 = tx * m->_11 + ty * m->_21 + m->_41;
156 m->_42 = tx * m->_12 + ty * m->_22 + m->_42;
1468 J2dTraceLn2(J2D_TRACE_VERBOSE, " offsets: tx=%f ty=%f",
/openjdk7/hotspot/src/share/vm/opto/
H A Dconnode.cpp912 const TypeInt* ty = phase->type(y)->is_int(); local
916 jlong ylo = ty->_lo;
917 jlong yhi = ty->_hi;
921 int widen = MAX2(tx->_widen, ty->_widen);
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DAffineTransform.java605 * [ 0 1 ty ]
610 * @param ty the distance by which coordinates are translated in the
616 public static AffineTransform getTranslateInstance(double tx, double ty) { argument
618 Tx.setToTranslation(tx, ty);
1239 * [ 0 1 ty ]
1244 * @param ty 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 * m00 + ty * m0
1777 setToTranslation(double tx, double ty) argument
[all...]
/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);
201 ty -= 0.5;
204 coords[0][1] = xClip * c + yClip * d + ty;
207 coords[2][1] = wClip * c + hClip * d + ty;
211 coords[1][1] = wClip * c + yClip * d + ty;
214 coords[3][1] = xClip * c + hClip * d + ty;
218 coords[3][1] = wClip * c + yClip * d + ty;
221 coords[1][1] = xClip * c + hClip * d + ty;
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_check.c67 HprofType ty; member in struct:Finfo
186 read_val(unsigned char **pp, HprofType ty) argument
192 switch ( ty ) {
264 check_printf_val(HprofType ty, jvalue val, int long_form) argument
269 switch ( ty ) {
370 add_inst_field_to_cmap(CmapInfo *cmap, HprofId id, HprofType ty) argument
393 cmap->finfo[i].ty = ty;
425 HprofType ty; local
502 ty
513 HprofType ty; local
643 HprofType ty; local
659 HprofType ty; local
676 HprofType ty; local
713 HprofType ty; local
868 HprofType ty; local
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscnvrt.c162 cmsFloat64Number ax, ay, az, bx, by, bz, tx, ty, tz; local
173 ty = BlackPointIn->Y - cmsD50_XYZ()->Y;
177 ay = (BlackPointOut->Y - cmsD50_XYZ()->Y) / ty;
181 by = - cmsD50_XYZ()-> Y * (BlackPointOut->Y - BlackPointIn->Y) / ty;
/openjdk7/jdk/src/share/classes/sun/print/
H A DPeekGraphics.java212 * [ 0 1 ty ]
216 public void translate(double tx, double ty) { argument
217 mGraphics.translate(tx, ty);
H A DProxyGraphics2D.java148 * [ 0 1 ty ]
152 public void translate(double tx, double ty) { argument
153 mGraphics.translate(tx, ty);
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DGraphicsPrimitiveMgr.h539 jdouble ty; member in struct:__anon919
H A DProcessPath.c1164 jfloat tx, ty; local
1221 ty = (coords[3] + coords[5])/2.0f;
1223 coords1[3] = (ty + coords1[5])/2.0f;
1227 coords[5] = (coords[3] + ty)/2.0f;
1258 jfloat tx, ty; local
1263 ty = coords[3] + t*(coords[5] - coords[3]);
1267 coords1[5] = coords1[3] + t*(ty - coords1[3]);
1271 coords[3] = ty + t*(coords[5] - ty);
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java1438 * [ 0 1 ty ]
1442 public void translate(double tx, double ty) { argument
1443 transform.translate(tx, ty);
1933 protected static Shape transformShape(int tx, int ty, Shape s) { argument
1940 r.translate(tx, ty);
1946 rect.getY() + ty,
1951 if (tx == 0 && ty == 0) {
1955 AffineTransform mat = AffineTransform.getTranslateInstance(tx, ty);
2485 double ty = xform.getTranslateY();
2486 return (tx == (int)tx && ty
[all...]

Completed in 157 milliseconds