Searched refs:iData (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/awt/java/awt/image/
H A DPixelGrabber.java39 int iData[]; field in class:PixelGrabber
82 return iData;
139 iData = new int[width * height];
156 iData[realOff + x] = cm.getRGB(pixels[srcOff + x] & 0xff);
212 iData = new int[width * height];
219 System.arraycopy(pixels, srcOff, iData, realOff, srcW);
231 iData[realOff+x] = cm.getRGB(pixels[srcOff+x] & mask);
285 iData = new int[width * height];
367 iData = pixels;
386 iData
[all...]
H A DBufferedImageFilter.java56 private int iData[]; field in class:BufferedImageFilter
250 // iData = new int[width*height];
285 Object dstArray = isByteData ? (Object)bData : (Object)iData;
296 iData[dstPos] = model.getRGB(isByteData ? ((byte[])pixels)[srcPos]
316 } else if (iData != null) {
318 rgbData[i] = cm.getRGB(iData[i]);
328 iData = accessor.getDataInt(db);
342 iData = null;
362 iData = accessor.getDataInt(raster.getDataBuffer());
363 if (iData !
[all...]
H A DMemoryImageSource.java61 int iData[]; field in class:MemoryImageSource
301 this.iData = newpix;
548 this.iData = pixels;
578 con.setPixels(x, y, w, h, cm, iData, pixelOff, scanline);

Completed in 6 milliseconds