/cts/tools/host/src/com/android/cts/ |
ReferenceAppTestPackage.java | 24 import java.awt.image.BufferedImage; 198 Log.e("getScreenshot returned a null image", null);
|
/external/icu4c/ |
icu4c.css | 19 background-image: url(images/draftbg.png); 185 background-image: url(http://www.icu-project.org/images/gr100.gif);
|
/external/kernel-headers/original/linux/ |
fb.h | 334 __u32 dx; /* Where to place image */ 336 __u32 width; /* Size of image */ 340 __u8 depth; /* Depth of the image */ 341 const char *data; /* Pointer to image data */ 367 struct fb_image image; /* Cursor image */ member in struct:fb_cursor 468 __u32 dx; /* Where to place image */ 470 __u32 width; /* Size of image */ 474 __u8 depth; /* Depth of the image */ 475 const char __user *data; /* Pointer to image data * 485 struct fb_image_user image; \/* Cursor image *\/ member in struct:fb_cursor_user [all...] |
/external/libpng/ |
example.c | 19 * parts, like allocating memory to hold an image. You will have to 38 * returns zero if the image is a PNG and nonzero if it isn't a PNG. 53 * of the image to determine the file type, so it would be easiest just 119 /* Allocate/initialize the memory for image information. REQUIRED. */ 160 * If you have enough memory to read in the entire image at once, 164 * adjustment), then you can read the entire image (including 173 * PNG file before the first IDAT (image data chunk). REQUIRED 282 /* This reduces the image to the application supplied palette */ 285 /* An array of colors to which the image should be dithered */ 291 /* This reduces the image to the palette supplied in the file * [all...] |
/external/libxml2/ |
xmlmodule.c | 337 #include <kernel/image.h>
|
/external/qemu/android/avd/ |
info.c | 43 * - mandatory user data image ("userdata-qemu.img") and cache image 46 * - optional mutable system image ("system-qemu.img"), kernel image 50 * in the content directory. If it doesn't find a given image there, it 61 * Individual image disk search patch can be over-riden on the command-line 74 #define SEARCH_PREFIX "image.sysdir." 90 * to the SD Card image file, if you don't want to place it in 95 /* certain disk image files are mounted read/write by the emulator 98 * to collision depending on the image type 448 const char* image = l->imageFile; local [all...] |
/external/webkit/WebCore/html/ |
HTMLEmbedElement.cpp | 174 toRenderImage(renderer())->setCachedImage(m_imageLoader->image());
|
/external/webkit/WebCore/platform/graphics/android/ |
ImageBufferAndroid.cpp | 67 image doesn't reflect any subsequent changes to the canvas' backend. 71 Image* ImageBuffer::image() const function in class:WebCore::ImageBuffer
|
/external/webkit/WebCore/platform/graphics/filters/ |
FEColorMatrix.cpp | 167 filterContext->drawImage(m_in->resultImage()->image(), DeviceColorSpace, calculateDrawingRect(m_in->scaledSubRegion()));
|
/external/webkit/WebCore/platform/graphics/skia/ |
ImageBufferSkia.cpp | 89 Image* ImageBuffer::image() const function in class:WebCore::ImageBuffer 92 // This creates a COPY of the image and will cache that copy. This means 94 // currently-returned image, nor the results of future image() calls, 97 // This seems silly, but is the way the CG port works: image() is 265 // Encode the image into a vector. 276 return String::format("data:image/png;base64,%s", base64EncodedData.data());
|
/external/webkit/WebCore/platform/graphics/wince/ |
ImageBufferWince.cpp | 25 #include "Image.h" 33 class BufferedImage: public Image { 94 Image* ImageBuffer::image() const function in class:WebCore::ImageBuffer 224 if (mimeType.lower() == "image/png") { 227 header = "data:image/png;base64,"; 231 header = "data:image/jpeg;base64,";
|
/external/webkit/WebCore/platform/graphics/wx/ |
ImageWx.cpp | 27 #include "Image.h" 46 #include <wx/image.h> 68 // Image Class 71 PassRefPtr<Image> Image::loadPlatformResource(const char *name) 76 RefPtr<Image> img = BitmapImage::create(); 109 if (!bitmap) // If it's too early we won't have an image yet. 112 // If we're drawing a sub portion of the image or scaling then create 113 // a pattern transformation on the image and draw the transformed pattern. 179 void Image::drawPattern(GraphicsContext* ctxt, const FloatRect& srcRect, const AffineTransform& patternTransf (…) [all...] |
/external/webkit/WebCore/platform/image-decoders/ |
ImageDecoder.h | 49 // The RGBA32Buffer object represents the decoded image data in RGBA32 format. This buffer is what all 71 // to create a new copy of the image data, only increase the ref count. 87 // Creates a new copy of the image data in |other|, so the two images 118 // to the underlying native image data. This pointer will be owned by 140 void setDecodedImage(const QImage& image); 195 // whose original rect was smaller than the overall image size. 202 // The ImageDecoder class represents a base class for specific image format decoders 207 // ENABLE(IMAGE_DECODER_DOWN_SAMPLING) allows image decoders to write directly to 209 // biggest size that decoded images can have. Image decoders will deflate those 210 // images that are bigger than m_maxNumPixels. (Not supported by all image decoders yet [all...] |
/external/webkit/WebCore/rendering/style/ |
FillLayer.h | 67 StyleImage* image() const { return m_image.get(); } function in struct:WebCore::FillLayer
|
/external/webkit/WebCore/svg/graphics/ |
SVGResourceFilter.cpp | 129 // at least one FilterEffect has a too big image size, 184 context->drawImage(resultImage->image(), colorSpace, lastEffect->subRegion());
|
/external/webkit/WebKit/win/ |
WebElementPropertyBag.cpp | 38 #include <WebCore/Image.h> 145 V_BYREF(pVar) = m_result->image();
|
/frameworks/base/awt/java/awt/ |
Graphics.java | 24 import java.awt.image.ImageObserver; 429 * Draws the specified image with the defined background color. The top left 430 * corner of image will be drawn at point (x, y) in current coordinate 431 * system. The image loading process notifies the specified Image Observer. 432 * This method returns true if the image has loaded, otherwise it returns 436 * the image which will be drawn. 438 * the X coordinate of the image top left corner. 440 * the Y coordinate of the image top left corner. 444 * the ImageObserver object which should be notified about image [all...] |
/frameworks/base/awt/java/awt/image/ |
BufferedImageFilter.java | 24 package java.awt.image; 119 // Stop image consuming if no pixels expected.
|
PackedColorModel.java | 22 package java.awt.image;
|
/frameworks/base/libs/rs/java/ImageProcessing/src/com/android/rs/image/ |
ImageProcessingActivity.java | 17 package com.android.rs.image;
|
/frameworks/base/libs/surfaceflinger/ |
LayerBuffer.cpp | 394 if (mTexture.image != EGL_NO_IMAGE_KHR) { 396 eglDestroyImageKHR(dpy, mTexture.image); 557 if (mTexture.image != EGL_NO_IMAGE_KHR) { 604 // delete the image 606 eglDestroyImageKHR(dpy, mTexture.image);
|
/frameworks/base/opengl/include/GLES/ |
glext.h | 309 GL_API void GL_APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image); 310 GL_API void GL_APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image); 312 typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image); 313 typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImageOES image);
|
/frameworks/base/services/java/com/android/server/status/ |
StatusBarIcon.java | 78 AnimatedImageView im = (AnimatedImageView)v.findViewById(com.android.internal.R.id.image);
|
/ndk/build/platforms/android-3/arch-arm/usr/include/linux/ |
fb.h | 344 struct fb_image image; member in struct:fb_cursor
|
/ndk/build/platforms/android-4/arch-arm/usr/include/GLES/ |
glext.h | 309 GL_API void GL_APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image); 310 GL_API void GL_APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image); 312 typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image); 313 typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImageOES image);
|