/external/skia/src/core/ |
SkMask.cpp | 56 void SkMask::FreeImage(void* image) 58 sk_free(image);
|
/external/webkit/WebCore/html/canvas/ |
CanvasPattern.h | 35 class Image; 44 static PassRefPtr<CanvasPattern> create(Image* image, bool repeatX, bool repeatY, bool originClean) 46 return adoptRef(new CanvasPattern(image, repeatX, repeatY, originClean)); 54 CanvasPattern(Image*, bool repeatX, bool repeatY, bool originClean);
|
/external/webkit/WebCore/platform/graphics/win/ |
ImageCairoWin.cpp | 27 #include "Image.h" 52 cairo_surface_t* image = cairo_win32_surface_create_with_dib (CAIRO_FORMAT_ARGB32, dibSection.dsBm.bmWidth, dibSection.dsBm.bmHeight); 55 return adoptRef(new BitmapImage(image)); 71 cairo_surface_t* image = cairo_image_surface_create_for_data((unsigned char*)bmpInfo.bmBits, local 78 cairo_t* targetRef = cairo_create(image); 79 cairo_surface_destroy(image); 99 cairo_surface_t* image = frameAtIndex(i); local 100 if (cairo_image_surface_get_height(image) == static_cast<size_t>(srcSize.height()) && cairo_image_surface_get_width(image) == static_cast<size_t>(srcSize.width())) { 109 // No image of the correct size was found, fallback to drawing the current fram [all...] |
/external/webkit/WebCore/platform/image-encoders/skia/ |
PNGImageEncoder.cpp | 102 bool PNGImageEncoder::encode(const SkBitmap& image, Vector<unsigned char>* output) 104 if (image.config() != SkBitmap::kARGB_8888_Config) 107 image.lockPixels(); 109 image.getPixels()), IntSize(image.width(), image.height()), 110 image.rowBytes(), output); 111 image.unlockPixels();
|
/external/webkit/WebCore/rendering/ |
RenderImageGeneratedContent.h | 47 virtual Image* image(int w = 0, int h = 0) { return m_styleImage->image(this, IntSize(w, h)); } function in class:WebCore::RenderImageGeneratedContent 55 // |m_styleImage| can be 0 if we get a callback for a background image from RenderObject::setStyle.
|
/frameworks/base/awt/java/awt/image/renderable/ |
ContextualRenderedImageFactory.java | 22 package java.awt.image.renderable; 25 import java.awt.image.RenderedImage; 36 * Maps a render context to a parameter block and a renderable image. 63 * Creates the rendered image determined by the render context and parameter 70 * @return the rendered image. 91 * Checks if this image factory is dynamic. 93 * @return true, if this image factory is dynamic.
|
RenderableImage.java | 22 package java.awt.image.renderable; 25 import java.awt.image.RenderedImage; 30 * of the image-specific data that defines a single image that could be rendered 53 * Creates the rendered image based on the information contained in the 59 * @return the rendered image. 64 * Creates the scaled rendered image based on the information contained in 75 * @return the rendered image. 99 * @return the rendered image. 111 * Gets the width of the image [all...] |
/packages/apps/Gallery/src/com/android/camera/ |
ImageLoader.java | 48 public void getBitmap(IImage image, 55 WorkItem w = new WorkItem(image, imageLoadedRunnable, tag); 61 public boolean cancel(final IImage image) { 63 int index = findItem(image); 74 private int findItem(IImage image) { 76 if (mQueue.get(i).mImage == image) { 101 WorkItem(IImage image, LoadedCallback onLoadedRunnable, int tag) { 102 mImage = image; 153 t.setName("image-loader");
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/ |
CommonAction.java | 41 * @param image 43 public CommonAction(String text, ImageDescriptor image) { 44 super(text, image);
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
LinearGradient.java | 89 java.awt.image.ColorModel colorModel, 100 private final java.awt.image.ColorModel mColorModel; 102 public LinearGradientPaintContext(java.awt.image.ColorModel colorModel) { 110 public java.awt.image.ColorModel getColorModel() { 114 public java.awt.image.Raster getRaster(int x, int y, int w, int h) { 115 java.awt.image.BufferedImage image = new java.awt.image.BufferedImage(w, h, local 116 java.awt.image.BufferedImage.TYPE_INT_ARGB); 148 image.setRGB(0 /*startX*/, 0 /*startY*/, w, h, data, 0 /*offset*/, w /*scansize*/) [all...] |
/sdk/traceview/src/com/android/traceview/ |
ColorController.java | 24 import org.eclipse.swt.graphics.Image; 53 private static HashMap<Integer, Image> imageCache = new HashMap<Integer, Image>(); 62 public static Image requestColorSquare(Display display, RGB rgb) { 76 public static Image requestColorSquare(Display display, int red, int green, int blue) { 78 Image image = imageCache.get(key); local 79 if (image == null) { 80 image = new Image(display, 8, 14) 98 Image image = requestColorSquare(display, rgb); local [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/x11/ |
SDL_x11yuv.c | 64 SDL_NAME(XvImage) *image; 252 hwdata->image = SDL_NAME(XvShmCreateImage)(GFX_Display, xv_port, format, 255 if ( hwdata->image != NULL && hwdata->image->pitches[0] != (width*bpp) ) { 257 XFree(hwdata->image); 258 width = hwdata->image->pitches[0] / bpp; 259 hwdata->image = SDL_NAME(XvShmCreateImage)(GFX_Display, xv_port, format, 263 hwdata->yuv_use_mitshm = (hwdata->image != NULL); 265 yuvshm->shmid = shmget(IPC_PRIVATE, hwdata->image->data_size, 286 XFree(hwdata->image); [all...] |
/external/skia/src/animator/ |
SkDrawShader.cpp | 57 SK_MEMBER(image, BaseBitmap) 64 SkDrawBitmapShader::SkDrawBitmapShader() : filterBitmap(-1), image(NULL) {} 75 if (image == NULL) 84 SkShader* shader = SkShader::CreateBitmapShader(image->fBitmap,
|
/external/webkit/WebCore/bindings/js/ |
JSImageConstructor.cpp | 62 return throwError(exec, ReferenceError, "Image constructor associated document is unavailable"); 66 // will be called (which will cause the image element to be marked if necessary). 69 RefPtr<HTMLImageElement> image = new HTMLImageElement(HTMLNames::imgTag, document); local 71 image->setWidth(width); 73 image->setHeight(height); 74 return asObject(toJS(exec, jsConstructor->globalObject(), image.release()));
|
/external/webkit/WebCore/platform/image-decoders/qt/ |
RGBA32BufferQt.cpp | 45 // The image must not have format 8888 pre multiplied... 46 void RGBA32Buffer::setDecodedImage(const QImage& image) 48 m_image = image; 49 m_size = image.size(); 50 m_hasAlpha = image.hasAlphaChannel(); 89 // Zero the image.
|
/external/webkit/WebKit/chromium/public/ |
WebImage.h | 43 namespace WebCore { class Image; } 58 WebImage(const WebImage& image) 61 assign(image); 64 WebImage& operator=(const WebImage& image) 66 assign(image); 70 // Decodes the given image data. If the image has multiple frames, 82 WebImage(const WTF::PassRefPtr<WebCore::Image>&); 83 WebImage& operator=(const WTF::PassRefPtr<WebCore::Image>&);
|
/frameworks/base/awt/java/awt/ |
Paint.java | 26 import java.awt.image.ColorModel;
|
/frameworks/base/awt/java/awt/image/ |
ImageObserver.java | 22 package java.awt.image; 24 import java.awt.Image; 28 * notifications about Image construction status. 35 * The Constant WIDTH indicates that the width of the image is available. 40 * The Constant HEIGHT indicates that the width of the image is available. 45 * The Constant PROPERTIES indicates that the properties of the image are 52 * scaled variation of the image pixels are available. 57 * The Constant FRAMEBITS indicates that complete frame of a image which was 63 * The Constant ALLBITS indicates that an image which was previously drawn 74 * The Constant ABORT indicates that the image producing is aborted [all...] |
WritableRenderedImage.java | 22 package java.awt.image; 64 * Sets this image to the contents of the specified Raster.
|
/frameworks/base/awt/org/apache/harmony/awt/gl/image/ |
BufferedImageGraphics2D.java | 21 package org.apache.harmony.awt.gl.image; 26 import java.awt.image.BufferedImage; 27 import java.awt.image.ColorModel; 28 import java.awt.image.WritableRaster;
|
/frameworks/base/opengl/libs/ |
egl_impl.h | 41 EGLAPI EGLImageKHR egl_get_image_for_current_context(EGLImageKHR image);
|
/frameworks/base/tools/aapt/ |
Images.cpp | 33 // This holds an image as 8bpp RGBA. 78 //printf("Image %s:\n", imageName); 121 NOISY(printf("Image %s: w=%d, h=%d, d=%d, colors=%d, inter=%d, comp=%d\n", 314 static uint32_t get_color(image_info* image, int hpatch, int vpatch) 318 hpatch, image->info9Patch.xDivs[0], image->info9Patch.xDivs[1], 319 image->width, &left, &right); 321 vpatch, image->info9Patch.yDivs[0], image->info9Patch.yDivs[1], 322 image->height, &top, &bottom) [all...] |
/packages/apps/Gallery/src/com/android/camera/gallery/ |
ImageListUber.java | 163 IImage image = sublist.getImageForUri(uri); local 164 if (image != null) return image; 170 * Modify the skip list when an image is deleted by finding 188 private boolean removeImage(IImage image, int index) { 189 IImageList list = image.getContainer(); 190 if (list != null && list.removeImage(image)) { 197 public boolean removeImage(IImage image) { 198 return removeImage(image, getImageIndex(image)); 202 IImage image = getImageAt(index); local [all...] |
/sdk/layoutlib_api/src/com/android/layoutlib/api/ |
ILayoutResult.java | 19 import java.awt.image.BufferedImage;
|
/external/webkit/WebCore/platform/win/ |
DragImageCairoWin.cpp | 32 #include "Image.h" 107 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale) 111 if (!image) 114 IntSize srcSize = dragImageSize(image); 129 cairo_surface_t* srcImage = createCairoContextFromBitmap(image); 131 // Scale the target surface to the new image size, and flip it 143 ::DeleteObject(image); 144 image = 0; 148 hbmp = image; 155 DragImageRef createDragImageFromImage(Image* img [all...] |