/external/webkit/Source/WebCore/platform/qt/ |
DragImageQt.cpp | 30 #include "Image.h" 34 IntSize dragImageSize(DragImageRef image) 36 if (!image) 39 return image->size(); 42 void deleteDragImage(DragImageRef image) 44 delete image; 47 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale) 49 if (!image) 52 int scaledWidth = image->width() * scale.width(); 53 int scaledHeight = image->height() * scale.height() [all...] |
/external/webkit/Tools/WebKitTestRunner/cairo/ |
TestInvocationCairo.cpp | 32 void TestInvocation::dumpPixelsAndCompareWithExpected(WKImageRef image)
|
/external/webkit/Source/WebCore/platform/chromium/ |
DragImageChromiumSkia.cpp | 34 #include "Image.h" 44 IntSize dragImageSize(DragImageRef image) 46 if (!image) 49 return IntSize(image->width(), image->height()); 52 void deleteDragImage(DragImageRef image) 54 delete image; 57 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale) 59 if (!image) 62 int imageWidth = scale.width() * image->width() [all...] |
DragImageChromiumMac.cpp | 34 #include "Image.h" 43 IntSize dragImageSize(DragImageRef image) 45 if (!image) 47 return IntSize(CGImageGetWidth(image), CGImageGetHeight(image)); 50 void deleteDragImage(DragImageRef image) 52 CGImageRelease(image); 55 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale) 57 if (!image) 59 size_t width = roundf(CGImageGetWidth(image) * scale.width()) [all...] |
/external/chromium/webkit/glue/ |
webkit_glue_unittest.cc | 12 std::string data("not an image"); 13 SkBitmap image; local 14 EXPECT_FALSE(webkit_glue::DecodeImage(data, &image)); 15 EXPECT_TRUE(image.isNull()); 23 SkBitmap image; local 24 EXPECT_TRUE(webkit_glue::DecodeImage(data, &image)); 25 EXPECT_FALSE(image.isNull()); 26 EXPECT_EQ(2, image.width()); 27 EXPECT_EQ(2, image.height()); 28 EXPECT_EQ(SkBitmap::kARGB_8888_Config, image.config()) [all...] |
/external/oprofile/daemon/liblegacy/ |
opd_image.c | 49 void opd_delete_image(struct opd_image * image) 51 verbprintf(vmisc, "Deleting image: name %s app_name %s, kernel %d, " 53 image->name, image->app_name, image->kernel, 54 image->tid, image->tgid, (int)image->ref_count); 56 if (image->ref_count <= 0) { 57 printf("image->ref_count < 0 for image: name %s app_name %s, 87 struct opd_image * image = local 133 struct opd_image * image; local 225 struct opd_image * image = 0; local 252 struct opd_image * image; local [all...] |
opd_sample_files.h | 34 * @param image the image pointer to work on 36 * close all samples files belonging to this image 38 void opd_close_image_samples_files(struct opd_image * image); 41 * opd_open_24_sample_file - open an image sample file 42 * @param image image to open file for 46 * Open image sample file for the image, counter 48 * image->kernel and image->name must have meaningfu [all...] |
/external/webkit/Source/WebCore/platform/gtk/ |
DragImageGtk.cpp | 23 #include "Image.h" 29 IntSize dragImageSize(DragImageRef image) 31 if (image) 32 return IntSize(cairo_image_surface_get_width(image), cairo_image_surface_get_height(image)); 37 void deleteDragImage(DragImageRef image) 39 if (image) 40 cairo_surface_destroy(image); 43 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale) 45 if (!image) [all...] |
/external/webkit/Source/WebCore/platform/wince/ |
DragImageWinCE.cpp | 26 #include "Image.h" 37 void deleteDragImage(DragImageRef image) 39 if (image) 40 ::DeleteObject(image); 48 DragImageRef dissolveDragImageToFraction(DragImageRef image, float) 50 return image; 53 DragImageRef createDragImageFromImage(Image*)
|
/external/elfutils/libelf/ |
elf_memory.c | 62 elf_memory (image, size) 63 char *image; 66 if (image == NULL) 72 return __libelf_read_mmaped_file (-1, image, 0, size, ELF_C_READ, NULL);
|
/external/webkit/Source/WebCore/platform/efl/ |
DragImageEfl.cpp | 25 #include "Image.h" 41 DragImageRef scaleDragImage(DragImageRef image, FloatSize) 44 return image; 47 DragImageRef dissolveDragImageToFraction(DragImageRef image, float) 50 return image; 53 DragImageRef createDragImageFromImage(Image*)
|
/external/webkit/Source/WebCore/platform/haiku/ |
DragImageHaiku.cpp | 31 #include "Image.h" 49 DragImageRef scaleDragImage(DragImageRef image, FloatSize) 52 return image; 55 DragImageRef dissolveDragImageToFraction(DragImageRef image, float) 58 return image; 61 DragImageRef createDragImageFromImage(Image*)
|
/external/webkit/Source/WebCore/platform/wx/ |
DragImageWx.cpp | 30 #include "Image.h" 43 DragImageRef scaleDragImage(DragImageRef image, FloatSize) 45 return image; 48 DragImageRef dissolveDragImageToFraction(DragImageRef image, float) 50 return image; 53 DragImageRef createDragImageFromImage(Image*)
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_deblocking.h | 52 image_t *image,
|
/external/opencv/cxcore/include/ |
cxcore.hpp | 49 CvImage() : image(0), refcount(0) {} 52 image = cvCreateImage( size, depth, channels ); 53 refcount = image ? new int(1) : 0; 56 CvImage( IplImage* img ) : image(img) 58 refcount = image ? new int(1) : 0; 61 CvImage( const CvImage& img ) : image(img.image), refcount(img.refcount) 66 CvImage( const char* filename, const char* imgname=0, int color=-1 ) : image(0), refcount(0) 69 CvImage( CvFileStorage* fs, const char* mapname, const char* imgname ) : image(0), refcount(0) 72 CvImage( CvFileStorage* fs, const char* seqname, int idx ) : image(0), refcount(0 205 IplImage* image; member in class:CvImage [all...] |
/external/webkit/Source/WebKit/efl/ewk/ |
ewk_util.cpp | 28 * Converts an image from cairo_surface to the Evas_Object. 31 * @param surface cairo representation of an image 40 Evas_Object* image; local 71 ERR("invalid image size %dx%d, stride=%d", w, h, stride); 81 image = evas_object_image_filled_add(canvas); 82 if (!image) { 83 ERR("could not add image to canvas."); 87 evas_object_image_colorspace_set(image, EVAS_COLORSPACE_ARGB8888); 88 evas_object_image_size_set(image, w, h); 89 evas_object_image_alpha_set(image, format == CAIRO_FORMAT_ARGB32) [all...] |
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/mediacontrol/mutebutton/ |
mute_button.edc | 26 image: "widget/mediacontrol/mutebutton/mutebutton.png" COMP; 27 image: "widget/mediacontrol/mutebutton/unmutebutton.png" COMP; 33 type: IMAGE; 39 image.normal: "widget/mediacontrol/mutebutton/mutebutton.png"; 43 image.normal: "widget/mediacontrol/mutebutton/unmutebutton.png";
|
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/mediacontrol/playpausebutton/ |
playpause_button.edc | 26 image: "widget/mediacontrol/playpausebutton/playbutton.png" COMP; 27 image: "widget/mediacontrol/playpausebutton/pausebutton.png" COMP; 33 type: IMAGE; 39 image.normal: "widget/mediacontrol/playpausebutton/playbutton.png"; 43 image.normal: "widget/mediacontrol/playpausebutton/pausebutton.png";
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
ip.rsh | 18 #pragma rs java_package_name(com.android.rs.image)
|
/external/webkit/Source/WebKit/chromium/src/ |
WebIconLoadingCompletionImpl.cpp | 54 RefPtr<Image> image = BitmapImage::create(); local 55 image->setData(iconData, true); 56 m_fileChooser->iconLoaded(Icon::create(image));
|
/external/webkit/Source/WebKit2/UIProcess/API/C/cg/ |
WKIconDatabaseCG.cpp | 32 #include <WebCore/Image.h> 39 Image* image = toImpl(iconDatabaseRef)->imageForPageURL(toWTFString(urlRef)); local 40 return image ? image->getFirstCGImageRefOfSize(IntSize(static_cast<int>(size.width), static_cast<int>(size.height))) : 0;
|
/external/webkit/Source/WebCore/rendering/style/ |
CursorData.h | 35 CursorData(PassRefPtr<StyleImage> image, const IntPoint& hotSpot) 36 : m_image(image) 51 StyleImage* image() const { return m_image.get(); } function in class:WebCore::CursorData 52 void setImage(PassRefPtr<StyleImage> image) { m_image = image; }
|
StyleCachedImage.h | 36 static PassRefPtr<StyleCachedImage> create(CachedImage* image) { return adoptRef(new StyleCachedImage(image)); } 55 virtual PassRefPtr<Image> image(RenderObject*, const IntSize&) const; 58 StyleCachedImage(CachedImage* image) 59 : m_image(image)
|
/external/qemu/android/skin/ |
image.c | 12 #include "android/skin/image.h" 207 SKIN_IMAGE_CLONE = (1 << 0) /* this image is a clone */ 233 skin_image_free( SkinImage* image ) 235 if (image && image != _no_image) 237 if (image->surface) { 238 SDL_FreeSurface(image->surface); 239 image->surface = NULL; 242 if (image->pixels) { 243 free( image->pixels ) 256 SkinImage* image = calloc(1, sizeof(*image) + len + 1); local 426 SkinImage* image = cache->mru_head.prev; local 599 SkinImage* image = *pimage; local 616 SkinImage* image; local 632 SkinImage* image; local [all...] |
/external/proguard/src/proguard/gui/splash/ |
ImageSprite.java | 26 * This Sprite represents an animated image. 32 private final Image image; field in class:ImageSprite 41 * @param image the Image to be painted. 42 * @param x the variable x-coordinate of the upper-left corner of the image. 43 * @param y the variable y-coordinate of the upper-left corner of the image. 44 * @param scaleX the variable x-scale of the image. 45 * @param scaleY the variable y-scale of the image. 47 public ImageSprite(Image image [all...] |