HomeSort by relevance Sort by last modified time
    Searched refs:image (Results 301 - 325 of 638) sorted by null

<<11121314151617181920>>

  /frameworks/base/awt/java/awt/image/
FilteredImageSource.java 22 package java.awt.image;
27 * The FilteredImageSource class is used for producing image data for a new
28 * filtered version of the original image using the specified filter object.
ShortLookupTable.java 24 package java.awt.image;
29 * image and an offset value. The offset value will be subtracted from the input
  /frameworks/base/awt/java/awt/image/renderable/
RenderContext.java 22 package java.awt.image.renderable;
29 * The Class RenderContext stores data on how an image is to be rendered: the
  /frameworks/base/awt/javax/imageio/
ImageReader.java 35 import java.awt.image.BufferedImage;
36 import java.awt.image.Raster;
37 import java.awt.image.RenderedImage;
240 * Gets the minimum valid index for reading an image, thumbnail, or image
243 * @return the minimum valid index for reading an image, thumbnail, or image
291 * Gets the width of the specified image in input source.
294 * the image index.
302 * Gets the height of the specified image in input source
    [all...]
  /frameworks/base/awt/javax/imageio/spi/
ImageWriterSpi.java 27 import java.awt.image.RenderedImage;
98 * the value indicating if image metadata can be described by
101 * the native image metadata format name, returned by
104 * the native image metadata format class name, returned by
107 * the extra image metadata format names, returned by
110 * the extra image metadata format class names, returned by
158 * service provider can encode an image with the specified type.
162 * @return true, if an image with the specified type can be encoded, false
  /frameworks/base/awt/org/apache/harmony/awt/gl/color/
ColorConverter.java 24 import java.awt.image.BufferedImage;
25 import java.awt.image.ColorModel;
26 import java.awt.image.Raster;
27 import java.awt.image.WritableRaster;
41 * Translates pixels, stored in source buffered image and writes the data
42 * to the destination image.
44 * @param src - source image
45 * @param dst - destination image
190 // Go ahead and rescale the source image
220 * Creates NativeImageFormat from buffered image
    [all...]
NativeImageFormat.java 23 import java.awt.image.BufferedImage;
24 import java.awt.image.ColorModel;
25 import java.awt.image.ComponentSampleModel;
26 import java.awt.image.DataBuffer;
27 import java.awt.image.Raster;
28 import java.awt.image.SampleModel;
29 import java.awt.image.SinglePixelPackedSampleModel;
38 * It also encapsulates all the information about the image format, which native CMM
111 // Has the image alpha channel? If has - here its band band offset goes
123 // LCMS image format encoder
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/image/
URLDecodingImageSource.java 25 package org.apache.harmony.awt.gl.image;
  /frameworks/base/awt/org/apache/harmony/x/imageio/plugins/jpeg/
IISDecodingImageSource.java 25 import org.apache.harmony.awt.gl.image.DecodingImageSource;
  /packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/
ContentTypeParser.java 69 this.type = type.image;
70 this.subtype = subtype.image;
92 paramNames.add(attrib.image);
110 {if (true) return t.image;}
  /sdk/screenshot/src/com/android/screenshot/
Screenshot.java 26 import java.awt.image.BufferedImage;
193 * Grab an image from an ADB-connected device.
215 // convert raw data to an Image
216 BufferedImage image = new BufferedImage(rawImage.width, rawImage.height, local
225 image.setRGB(x, y, value);
229 if (!ImageIO.write(image, "png", new File(filepath))) {
  /development/tools/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRunner.java 27 import java.awt.image.BufferedImage;
553 * Grab an image from an ADB-connected device.
572 recordResponse("No image", "");
578 BufferedImage image; local
580 logger.info("Raw Image - height: " + rawImage.height + ", width: " + rawImage.width);
583 // convert raw data to an Image
584 image = new BufferedImage(rawImage.height, rawImage.width,
601 image.setRGB(y, rawImage.width - x - 1, value);
605 // convert raw data to an Image
606 image = new BufferedImage(rawImage.width, rawImage.height
    [all...]
  /external/webkit/WebCore/loader/
DocLoader.cpp 316 CachedImage* image = const_cast<CachedImage*>(static_cast<const CachedImage*>(resource)); local
318 if (shouldBlockNetworkImage(image->url()))
322 if (image->stillNeedsLoad())
323 cache()->loader()->load(this, image, true);
355 CachedImage* image = const_cast<CachedImage*>(static_cast<const CachedImage*>(resource)); local
356 if (image->stillNeedsLoad())
357 cache()->loader()->load(this, image, true);
  /external/webkit/WebCore/css/
CSSPropertyNames.in 15 background-image
76 list-style-image
170 -webkit-border-image
217 -webkit-mask-box-image
220 -webkit-mask-image
  /external/webkit/WebKitTools/DumpRenderTree/mac/
PixelDumpSupportMac.mm 169 // Note that the returned image might differ very slightly from the window backing because of dithering artifacts in the window server compositor
170 CGImageRef image = CGWindowListCreateImage(CGRectNull, kCGWindowListOptionIncludingWindow, [[view window] windowNumber], kCGWindowImageBoundsIgnoreFraming | kCGWindowImageShouldBeOpaque);
171 CGContextDrawImage(context, CGRectMake(0, 0, CGImageGetWidth(image), CGImageGetHeight(image)), image);
172 CGImageRelease(image);
  /external/quake/quake/src/WinQuake/
vid_sunxil.cpp 1001 xil_import(quake_image, TRUE); // let xil control the image
1117 sched_update(XilImage image)
1122 if (write(render_pipeline[1], &image, sizeof(image)) != sizeof (image))
1141 XilImage image; local
1146 while (read(render_pipeline[0], &image, sizeof (image)) == sizeof(image)) {
1148 xil_import(image, TRUE); // let xil control the imag
    [all...]
  /external/webkit/
Android.mk 133 $(LOCAL_PATH)/WebCore/platform/image-decoders \
134 $(LOCAL_PATH)/WebCore/platform/image-decoders/bmp \
135 $(LOCAL_PATH)/WebCore/platform/image-decoders/gif \
136 $(LOCAL_PATH)/WebCore/platform/image-decoders/ico \
137 $(LOCAL_PATH)/WebCore/platform/image-decoders/jpeg \
138 $(LOCAL_PATH)/WebCore/platform/image-decoders/png \
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/test/
JPEGTestEnc.c 82 OMX_STRING StrJpegEncoder= "OMX.TI.IMAGE.JPEG.ENC";
258 /*145*/0x02, 0xA0, /* Exif Image Width (0xA002)*/
261 /* 153 */ 0xB0, 0x00,0x00, 0x00, /* Image width , 0x00000280 i.e. 640*/
263 /*157*/0x03, 0xA0, /* Exif Image Width (0xA003)*/
266 /* 165 */ 0x90, 0x00,0x00, 0x00, /* Image Height , 0x000001E0 i.e. 480*/
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
ImageManager.java 68 // ImageListParam specifies all the parameters we need to create an image
76 // This is only used if we are creating a single image list.
79 // This is only used if we are creating an empty image list.
165 * @return true if the mimetype is an image mimetype.
168 return mimeType.startsWith("image/");
181 * @return true if the image is an image.
183 public static boolean isImage(IImage image) {
184 return isImageMimeType(image.getMimeType());
188 * @return true if the image is a video
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/src/
OMX_JpegEnc_Utils.c 603 if ((pPortDefIn->format.image.nFrameHeight * pPortDefIn->format.image.nFrameWidth) <= (352*288)) {
606 else if ((pPortDefIn->format.image.nFrameHeight * pPortDefIn->format.image.nFrameWidth) <= (640*480)) {
609 else if ((pPortDefIn->format.image.nFrameHeight * pPortDefIn->format.image.nFrameWidth) <= (720*576)) {
612 else if ((pPortDefIn->format.image.nFrameHeight * pPortDefIn->format.image.nFrameWidth) <= (1*1024*1024)) {
615 else if ((pPortDefIn->format.image.nFrameHeight * pPortDefIn->format.image.nFrameWidth) <= (2*1024*1024))
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xv/
Xv.c 1006 SDL_NAME(XvImage) *image,
1031 req->id = image->id;
1040 req->width = image->width;
1041 req->height = image->height;
1043 len = (image->data_size + 3) >> 2;
1050 Data(dpy, (char *)image->data, image->data_size);
1063 SDL_NAME(XvImage) *image,
1075 XShmSegmentInfo *shminfo = (XShmSegmentInfo *)image->obdata;
1090 req->id = image->id
    [all...]
  /bootable/recovery/
Android.mk 29 # TODO: Build the ramdisk image in a more principled way.
  /external/bzip2/
bzip.css 48 list-style-image: none;
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
Xvlib.h 383 SDL_NAME(XvImage) *image,
401 SDL_NAME(XvImage) *image,
  /external/webkit/WebCore/bindings/objc/
DOMExtensions.h 56 - (NSImage *)image WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER);

Completed in 383 milliseconds

<<11121314151617181920>>