Searched refs:image (Results 1 - 25 of 696) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/qt/
H A DDragImageQt.cpp34 IntSize dragImageSize(DragImageRef image) argument
36 if (!image)
39 return image->size();
42 void deleteDragImage(DragImageRef image) argument
44 delete image;
47 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale) argument
49 if (!image)
52 int scaledWidth = image->width() * scale.width();
53 int scaledHeight = image->height() * scale.height();
55 *image
59 dissolveDragImageToFraction(DragImageRef image, float) argument
64 createDragImageFromImage(Image* image) argument
[all...]
/external/webkit/Tools/WebKitTestRunner/cairo/
H A DTestInvocationCairo.cpp32 void TestInvocation::dumpPixelsAndCompareWithExpected(WKImageRef image) argument
/external/webkit/Source/WebCore/platform/chromium/
H A DDragImageChromiumSkia.cpp44 IntSize dragImageSize(DragImageRef image) argument
46 if (!image)
49 return IntSize(image->width(), image->height());
52 void deleteDragImage(DragImageRef image) argument
54 delete image;
57 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale) argument
59 if (!image)
62 int imageWidth = scale.width() * image->width();
63 int imageHeight = scale.height() * image
71 dissolveDragImageToFraction(DragImageRef image, float fraction) argument
94 createDragImageFromImage(Image* image) argument
[all...]
H A DDragImageChromiumMac.cpp43 IntSize dragImageSize(DragImageRef image) argument
45 if (!image)
47 return IntSize(CGImageGetWidth(image), CGImageGetHeight(image));
50 void deleteDragImage(DragImageRef image) argument
52 CGImageRelease(image);
55 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale) argument
57 if (!image)
59 size_t width = roundf(CGImageGetWidth(image) * scale.width());
60 size_t height = roundf(CGImageGetHeight(image) * scal
75 dissolveDragImageToFraction(DragImageRef image, float delta) argument
101 createDragImageFromImage(Image* image) argument
[all...]
/external/chromium/webkit/glue/
H A Dwebkit_glue_unittest.cc12 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
[all...]
/external/oprofile/daemon/liblegacy/
H A Dopd_image.c49 void opd_delete_image(struct opd_image * image) argument
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
87 struct opd_image * image = local
133 struct opd_image * image; local
177 is_same_image(struct opd_image const * image, char const * app_name, pid_t tid, pid_t tgid) argument
225 struct opd_image * image = 0; local
252 struct opd_image * image; local
[all...]
H A Dopd_sample_files.h34 * @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
[all...]
/external/webkit/Source/WebCore/platform/gtk/
H A DDragImageGtk.cpp29 IntSize dragImageSize(DragImageRef image) argument
31 if (image)
32 return IntSize(cairo_image_surface_get_width(image), cairo_image_surface_get_height(image));
37 void deleteDragImage(DragImageRef image) argument
39 if (image)
40 cairo_surface_destroy(image);
43 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale) argument
45 if (!image)
48 int newWidth = scale.width() * cairo_image_surface_get_width(image);
64 dissolveDragImageToFraction(DragImageRef image, float fraction) argument
76 createDragImageFromImage(Image* image) argument
[all...]
/external/webkit/Source/WebCore/platform/wince/
H A DDragImageWinCE.cpp37 void deleteDragImage(DragImageRef image) argument
39 if (image)
40 ::DeleteObject(image);
48 DragImageRef dissolveDragImageToFraction(DragImageRef image, float) argument
50 return image;
/external/elfutils/libelf/
H A Delf_memory.c29 elf_memory (image, size)
30 char *image;
33 if (image == NULL)
39 return __libelf_read_mmaped_file (-1, image, 0, size, ELF_C_READ, NULL);
/external/webkit/Source/WebCore/platform/efl/
H A DDragImageEfl.cpp41 DragImageRef scaleDragImage(DragImageRef image, FloatSize) argument
44 return image;
47 DragImageRef dissolveDragImageToFraction(DragImageRef image, float) argument
50 return image;
/external/webkit/Source/WebCore/platform/haiku/
H A DDragImageHaiku.cpp49 DragImageRef scaleDragImage(DragImageRef image, FloatSize) argument
52 return image;
55 DragImageRef dissolveDragImageToFraction(DragImageRef image, float) argument
58 return image;
/external/webkit/Source/WebCore/platform/wx/
H A DDragImageWx.cpp43 DragImageRef scaleDragImage(DragImageRef image, FloatSize) argument
45 return image;
48 DragImageRef dissolveDragImageToFraction(DragImageRef image, float) argument
50 return image;
/external/opencv/cxcore/include/
H A Dcxcore.hpp49 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(
205 IplImage* image; member in class:CvImage
[all...]
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_util.cpp28 * 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, forma
[all...]
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/mediacontrol/mutebutton/
H A Dmute_button.edc26 image: "widget/mediacontrol/mutebutton/mutebutton.png" COMP;
27 image: "widget/mediacontrol/mutebutton/unmutebutton.png" COMP;
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/
H A Dplaypause_button.edc26 image: "widget/mediacontrol/playpausebutton/playbutton.png" COMP;
27 image: "widget/mediacontrol/playpausebutton/pausebutton.png" COMP;
39 image.normal: "widget/mediacontrol/playpausebutton/playbutton.png";
43 image.normal: "widget/mediacontrol/playpausebutton/pausebutton.png";
/external/webkit/Source/WebKit/chromium/src/
H A DWebIconLoadingCompletionImpl.cpp54 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/
H A DWKIconDatabaseCG.cpp39 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/
H A DCursorData.h35 CursorData(PassRefPtr<StyleImage> image, const IntPoint& hotSpot) argument
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; } argument
/external/qemu/android/skin/
H A Dimage.c12 #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
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/
H A DImageSprite.java26 * 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, argument
53 this.image = image;
[all...]
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DIconMac.mm31 Icon::Icon(NSImage *image)
32 : m_nsImage(image)
35 [image setFlipped:YES];
50 // FIXME: find a better image for multiple files to use on Tiger.
61 NSImage* image = [[NSWorkspace sharedWorkspace] iconForFile:filenames[0]];
62 if (!image)
65 return adoptRef(new Icon(image));
70 NSImage* image = [NSImage imageNamed:NSImageNameMultipleDocuments];
71 if (!image)
74 return adoptRef(new Icon(image));
[all...]
/external/chromium/chrome/browser/ui/window_snapshot/
H A Dwindow_snapshot_x.cc37 XImage* image = XGetImage( local
39 if (!image) {
40 LOG(ERROR) << "Couldn't get image";
43 if (image->depth != 24) {
44 LOG(ERROR)<< "Unsupported image depth " << image->depth;
49 reinterpret_cast<unsigned char*>(image->data),
51 image->width,
52 image->height,
53 image
[all...]
/external/webkit/Source/WebCore/platform/
H A DDragImage.cpp36 DragImageRef fitDragImageToMaxSize(DragImageRef image, const IntSize& srcSize, const IntSize& size) argument
41 IntSize originalSize = dragImageSize(image);
55 return resizeRatio > 0.0f ? scaleDragImage(image, FloatSize(resizeRatio, resizeRatio)) : image;
57 // The image was scaled in the webpage so at minimum we must account for that scaling
65 return scaleDragImage(image, FloatSize(scalex, scaley));
70 DragImageRef image = frame->dragImageForSelection(); local
71 if (image)
72 image = dissolveDragImageToFraction(image, DragControlle
[all...]

Completed in 1709 milliseconds

1234567891011>>