Lines Matching refs:width

73     /** A cached copy of minX + width for use in bounds checks. */
155 this.maxX = minX + width;
302 * @param width Width of the pixel rectangle.
355 * @param width Width of the pixel rectangle.
418 * @param width Width of the pixel rectangle.
493 int width = inRaster.getWidth();
496 (dstOffX + width > this.maxX) || (dstOffY + height > this.maxY)) {
501 setDataElements(dstOffX, dstOffY, width, height, inRaster);
512 * @param width The number of pixels to store horizontally
517 int width, int height,
520 if (width <= 0 || height <= 0) {
542 width *= pixelStride;
545 data, dstOffset, width);
558 width, 1, tdata);
559 setDataElements(dstX, dstY+startY, width, 1, tdata);
761 * @param width Width (in pixels) of the subraster.
770 int width, int height,
773 width, height,
790 * @param width Width (in pixels) of the subraster.
799 int width, int height,
808 if ((x+width < x) || (x+width > this.minX + this.width)) {
809 throw new RasterFormatException("(x + width) is outside of Raster");
827 new Rectangle(x0, y0, width, height),
835 * width and height, and with new zeroed data arrays.
840 ((w <= 0) ? "width" : "height"));
851 * width and height, and with new zeroed data arrays. If
853 * createCompatibleRaster(width, height).
856 return createCompatibleWritableRaster(width,height);
874 if (width <= 0 || height <= 0 ||
875 height > (Integer.MAX_VALUE / width))
888 // we can be sure that width and height are greater than 0
900 pixelStride > (Integer.MAX_VALUE / width) ||
907 int lastPixelOffset = (width - 1) * pixelStride;
937 return new String ("ByteComponentRaster: width = "+width+" height = "