Lines Matching defs:width

322         setDevClip(r.x, r.y, r.width, r.height);
1006 // calculated a rotated pen width of just slightly greater
1008 // here so that we do not misclassify single width lines as
1807 public boolean hitClip(int x, int y, int width, int height) {
1808 if (width <= 0 || height <= 0) {
1831 x+width, y,
1833 x+width, y+height
1840 width = (int) Math.ceil(Math.max(Math.max(d[0], d[2]),
1847 width += x;
1852 if (!getCompClip().intersectsQuickCheckXYXY(x, y, width, height)) {
2160 r.width, 0,
2161 r.x, r.y, r.width,
2624 if (region.width <= 0 || region.height <= 0) {
2661 // have to have the correct width and height.
2664 int width = raster.getWidth();
2668 if (px != 0 || py != 0 || width != wRaster.getWidth() ||
2673 width,
2701 int x2 = Math.min(destRect.x + destRect.width, clip.x + clip.width);
2705 destRect.width = -1; // Set both just to be safe
2711 destRect.width = x2 - x1;
2738 getTileIndex(region.x + region.width - 1,
2758 tileRect.width = tileWidth;
2782 tileRect.width,
2800 tileRect.y + i2uTransY, 0, 0, tileRect.width,
3057 public boolean drawImage(Image img, int x, int y, int width, int height,
3059 return drawImage(img, x, y, width, height, null, observer);
3065 * drawing to/from given coordinates using a given width/height,
3066 * but we guarantee that the surfaceData's width/height of the src and dest
3071 int width, int height, Color bgcolor,
3075 width, height, bgcolor, observer);
3080 width, height, bgcolor, observer);
3096 public boolean drawImage(Image img, int x, int y, int width, int height,
3103 if ((width == 0) || (height == 0)) {
3110 return drawHiDPIImage(img, x, y, x + width, y + height, 0, 0, imgW,
3114 if (width == imgW && height == imgH) {
3115 return copyImage(img, x, y, 0, 0, width, height, bg, observer);
3119 return imagepipe.scaleImage(this, img, x, y, width, height,
3124 return imagepipe.scaleImage(this, img, x, y, width, height,
3219 int srcX, srcY, dstX, dstY, width, height;
3221 width = sx2 - sx1;
3225 width = sx1 - sx2;
3239 width, height, bgcolor, observer);