Searched refs:imageHeight (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/awt/com/android/internal/awt/
H A DAndroidImageDecoder.java62 int imageHeight; field in class:AndroidImageDecoder
97 imageHeight = bm.getHeight();
98 if (imageWidth < 0 || imageHeight < 0 ) {
100 + imageWidth + ", " + imageHeight);
104 setDimensions(imageWidth, imageHeight);
109 sendPixels(NB_OF_LINES_PER_CHUNK != 0 ? NB_OF_LINES_PER_CHUNK : imageHeight);
251 int h = imageHeight;
/frameworks/base/awt/org/apache/harmony/awt/gl/image/
H A DPngDecoder.java70 int imageWidth, imageHeight; field in class:PngDecoder
138 setDimensions(imageWidth, imageHeight);
218 intOut = new int[imageWidth * imageHeight];
220 byteOut = new byte[imageWidth * imageHeight * dataElementsPerPixel];
236 if (updateFromScanline + numScanlines > imageHeight) {
237 pass1 = imageHeight - updateFromScanline;
238 pass2 = updateFromScanline + numScanlines - imageHeight;
H A DGifDecoder.java274 gb.imageHeight,
285 gb.imageHeight,
355 int imageHeight; field in class:GifDecoder.GifGraphicBlock
398 imageBottom = imageTop + imageHeight;
486 int data[] = new int[imageWidth*imageHeight];
505 imageHeight,
514 byte data[] = new byte[imageWidth*imageHeight];
533 imageHeight,
596 for (int i=0; i<imageHeight; i++) {
610 (Object) new int[imageWidth*imageHeight]
[all...]
H A DJpegDecoder.java71 private int imageHeight = -1; field in class:JpegDecoder
192 setDimensions(imageWidth, imageHeight);

Completed in 42 milliseconds