Lines Matching defs:height

73     /** A cached copy of minY + height for use in bounds checks. */
155 this.maxY = minY + height;
310 * @param height Height of the pixel rectangle.
362 * @param height Height of the pixel rectangle.
387 * @param height Height of the pixel rectangle.
546 int height = inRaster.getHeight();
548 (dstOffX + width > this.maxX) || (dstOffY + height > this.maxY)) {
554 width, height,
571 * @param height The number of pixels to store vertically
576 int width, int height,
579 if (width <= 0 || height <= 0) {
620 for (int j = 0; j < height; j++) {
640 inscan * height);
642 for (int j = 0; j < height; j++) {
661 for (int j = 0; j < height; j++) {
692 for (int j = 0; j < height; j++) {
730 for (int j = 0; j < height; j++) {
763 for (int j = 0; j < height; j++) {
811 int height = srcRaster.getHeight();
826 height -= skipY;
833 if (dstOffY+height > this.maxY) {
834 height = this.maxY - dstOffY;
839 width, height,
1260 * @param height Height (in pixels) of the subraster.
1268 int width, int height,
1271 width, height,
1288 * @param height Height (in pixels) of the subraster.
1296 int width, int height,
1308 if ((y+height < y) || (y+height > this.minY + this.height)) {
1309 throw new RasterFormatException("(y + height) 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);
1374 if (width <= 0 || height <= 0 ||
1375 height > (Integer.MAX_VALUE / width))
1390 scanlineStride > (Integer.MAX_VALUE / height) ||
1397 + (height-1) * scanlineStride * 8
1405 if (height > 1) {
1416 return new String ("BytePackedRaster: width = "+width+" height = "+height