Lines Matching refs:width

73     /** A cached copy of minX + width for use in bounds checks. */
155 this.maxX = minX + width;
301 * @param width Width of the pixel rectangle.
354 * @param width Width of the sample rectangle.
417 * @param width Width of the pixel rectangle.
490 int width = inRaster.getWidth();
493 (dstOffX + width > this.maxX) || (dstOffY + height > this.maxY)) {
498 setDataElements(dstOffX, dstOffY, width, height, inRaster);
509 * @param width The number of pixels to store horizontally
514 int width, int height,
517 if (width <= 0 || height <= 0) {
534 width, 1, tdata);
535 setDataElements(dstX, dstY + startY, width, 1, tdata);
696 * @param width Width (in pixels) of the subraster.
705 int width, int height,
708 width, height,
725 * @param width Width (in pixels) of the subraster.
734 int width, int height,
743 if ((x+width < x) || (x+width > this.minX + this.width)) {
744 throw new RasterFormatException("(x + width) is outside of Raster");
762 new Rectangle(x0, y0, width, height),
770 * width and height, and with new zeroed data arrays.
775 ((w <= 0) ? "width" : "height"));
785 * width and height, and with new zeroed data arrays. If
787 * createCompatibleRaster(width, height).
790 return createCompatibleWritableRaster(width,height);
808 if (width <= 0 || height <= 0 ||
809 height > (Integer.MAX_VALUE / width))
822 // we can be sure that width and height are greater than 0
834 pixelStride > (Integer.MAX_VALUE / width) ||
841 int lastPixelOffset = (width - 1) * pixelStride;
870 return new String ("ShortComponentRaster: width = "+width