Lines Matching refs:width

70     /** A cached copy of minX + width for use in bounds checks. */
154 this.maxX = minX + width;
309 * @param width Width of the pixel rectangle.
361 * @param width Width of the pixel rectangle.
386 * @param width Width of the pixel rectangle.
545 int width = inRaster.getWidth();
548 (dstOffX + width > this.maxX) || (dstOffY + height > this.maxY)) {
554 width, height,
570 * @param width The number of pixels to store horizontally
576 int width, int height,
579 if (width <= 0 || height <= 0) {
594 int copybits = width * pixelBitStride;
810 int width = srcRaster.getWidth();
820 width -= skipX;
830 if (dstOffX+width > this.maxX) {
831 width = this.maxX - dstOffX;
839 width, height,
1259 * @param width Width (in pixels) of the subraster.
1268 int width, int height,
1271 width, height,
1287 * @param width Width (in pixels) of the subraster.
1296 int width, int height,
1305 if ((x+width < x) || (x+width > this.minX + this.width)) {
1306 throw new RasterFormatException("(x + width) is outside of Raster");
1326 new Rectangle(x0, y0, width, height),
1334 * width and height, and with new zeroed data arrays.
1339 ((w <= 0) ? "width" : "height"));
1349 * width and height, and with new zeroed data arrays.
1352 return createCompatibleWritableRaster(width,height);
1360 * conditions such as line wraparound (width of a line greater than
1374 if (width <= 0 || height <= 0 ||
1375 height > (Integer.MAX_VALUE / width))
1383 * sure that it is safe to multiply it by width.
1385 if ((width - 1) > Integer.MAX_VALUE / pixelBitStride) {
1398 + (width-1) * pixelBitStride
1406 lastbit = width * pixelBitStride - 1;
1416 return new String ("BytePackedRaster: width = "+width+" height = "+height