Lines Matching defs:at

178                          AffineTransform at,
191 strokeTo(rdrCtx, src, at, bs, thin, norm, antialias, consumer);
200 AffineTransform at,
210 lw = userSpaceLineWidth(at, MIN_PEN_SIZE);
212 lw = userSpaceLineWidth(at, 1.0f);
219 at,
230 private final float userSpaceLineWidth(AffineTransform at, float lw) {
234 if (at == null) {
236 } else if ((at.getType() & (AffineTransform.TYPE_GENERAL_TRANSFORM |
238 widthScale = (float)Math.sqrt(at.getDeterminant());
241 double A = at.getScaleX(); // m00
242 double C = at.getShearX(); // m01
243 double B = at.getShearY(); // m10
244 double D = at.getScaleY(); // m11
300 AffineTransform at,
328 if (at != null && !at.isIdentity()) {
329 final double a = at.getScaleX();
330 final double b = at.getShearX();
331 final double c = at.getShearY();
332 final double d = at.getScaleY();
343 // are not there this causes a SIGSEGV in libawt.so (at the time
383 // stroker (and maybe dasher) will have the full transform at
386 strokerat = at;
388 // by now strokerat == at. Input paths to
389 // stroker (and maybe dasher) will have the full transform at
391 // the inverse of *only the non translation part of at* will
393 // in stroker, because, suppose at = T*A, where T is just the
394 // translation part of at, and A is the rest. T*A has already
402 // either at is null or it's the identity. In either case
404 at = null;
428 src.getPathIterator(at));
434 * shape.getPathIterator(at)
735 * The {@code at} parameter specifies a transform that should affect
764 * @param at the transform to be applied to the shape and the
780 AffineTransform at,
792 // Test if at is identity:
793 final AffineTransform _at = (at != null && !at.isIdentity()) ? at
996 // log information at startup