HomeSort by relevance Sort by last modified time
    Searched refs:image (Results 26 - 50 of 1119) sorted by null

12 3 4 5 6 7 8 91011>>

  /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...]
image.h 23 /* skin image file objects */
25 /* opaque skin image type. all skin images are placed in a simple MRU cache
31 /* a descriptor for a given skin image */
33 const char* path; /* image file path (must be .png) */
42 /* a special value returned when an image cannot be properly loaded */
45 /* return the SDL_Surface* pointer of a given skin image */
46 extern SDL_Surface* skin_image_surface( SkinImage* image );
47 extern int skin_image_w ( SkinImage* image );
48 extern int skin_image_h ( SkinImage* image );
49 extern int skin_image_org_w ( SkinImage* image );
    [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...]
  /external/webkit/Source/WebCore/platform/graphics/mac/
IconMac.mm 31 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/
window_snapshot_x.cc 37 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->bytes_per_line)
    [all...]
  /external/webkit/Source/WebCore/platform/
DragImage.cpp 36 DragImageRef fitDragImageToMaxSize(DragImageRef image, const IntSize& srcSize, const IntSize& size)
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, DragController::DragImageAlpha)
    [all...]
  /external/oprofile/daemon/
opd_kernel.c 89 * Allocate and initialise a kernel image description
90 * @param name image name
97 struct kernel_image * image = xmalloc(sizeof(struct kernel_image)); local
99 image->name = xstrdup(name);
100 image->start = start;
101 image->end = end;
102 list_add(&image->list, &modules);
104 return image;
109 * Clear and free all kernel image information and reset
116 struct kernel_image * image; local
143 struct kernel_image * image; local
211 struct kernel_image * image = &vmlinux_image; local
    [all...]
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/check/
check.edc 28 image: "widget/check/img_check_on.png" COMP;
29 image: "widget/check/img_check_off.png" COMP;
30 image: "widget/check/img_check_off_focus.png" COMP;
31 image: "widget/check/img_check_on_focus.png" COMP;
32 image: "widget/check/img_check_off_hover.png" COMP;
33 image: "widget/check/img_check_on_hover.png" COMP;
71 type: IMAGE;
76 image {
83 image {
100 image {
    [all...]
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/radio/
radio.edc 27 image: "widget/radio/img_radio_on.png" COMP;
28 image: "widget/radio/img_radio_off.png" COMP;
29 image: "widget/radio/img_radio_on_focus.png" COMP;
30 image: "widget/radio/img_radio_off_focus.png" COMP;
31 image: "widget/radio/img_radio_on_hover.png" COMP;
32 image: "widget/radio/img_radio_off_hover.png" COMP;
70 type: IMAGE;
75 image {
82 image {
99 image {
    [all...]
  /external/webkit/Source/WebKit2/Shared/
WebCoreArgumentCoders.cpp 38 void encodeImage(ArgumentEncoder* encoder, Image* image)
40 RefPtr<ShareableBitmap> bitmap = ShareableBitmap::createShareable(image->size(), ShareableBitmap::SupportsAlpha);
41 bitmap->createGraphicsContext()->drawImage(image, ColorSpaceDeviceRGB, IntPoint());
48 bool decodeImage(ArgumentDecoder* decoder, RefPtr<Image>& image)
57 image = createImage(bitmap.get());
58 if (!image)
  /frameworks/base/core/java/android/widget/
ImageSwitcher.java 40 ImageView image = (ImageView)this.getNextView(); local
41 image.setImageResource(resid);
47 ImageView image = (ImageView)this.getNextView(); local
48 image.setImageURI(uri);
54 ImageView image = (ImageView)this.getNextView(); local
55 image.setImageDrawable(drawable);
  /external/chromium/chrome/browser/ui/cocoa/
hover_image_button.h 22 // Sets the default image.
23 - (void)setDefaultImage:(NSImage*)image;
25 // Sets the hover image.
26 - (void)setHoverImage:(NSImage*)image;
28 // Sets the pressed image.
29 - (void)setPressedImage:(NSImage*)image;
  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_BView.h 39 image = NULL;
70 /* And if there's an image, redraw it. */
71 if( image ) {
72 bounds = image->Bounds();
79 if ( image ) {
80 delete image;
82 image = bitmap;
85 if ( image ) {
92 DrawBitmap(image, updateRect, dest);
94 DrawBitmap(image, updateRect, updateRect)
112 BBitmap *image; member in class:SDL_BView
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/brew/
ImageBrew.cpp 32 #include "Image.h"
43 PassRefPtr<Image> Image::loadPlatformResource(const char *name)
49 return Image::nullImage();
51 RefPtr<Image> image = BitmapImage::create();
52 image->setData(buffer, true);
53 return image.release();
  /cts/apps/CtsVerifier/include/colorchecker/
colorchecker.h 20 /** Detects the 6x4 Xrite ColorChecker Classic pattern in the input image,
24 * and the whole pattern should fill at least 1/3 of the image
33 * @param inputImage Source image to detect the pattern in. Assumed
34 * to be a 3-channel interleaved image. Row-major
35 * @param width Width of input image
36 * @param height Height of input image
37 * @param patchColors Output 6x4 3-channel image of average patch
41 * diagnostics. Image width is approximately 160
42 * pixels. Pass in NULL if the diagnostic image
50 bool findColorChecker(const unsigned char *image,
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
priv_readelf.h 43 extern Bool ML_(is_elf_object_file)( void* image, SizeT n_image );
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/mediacontrol/seekbackwardbutton/
seekbackward_button.edc 26 image: "widget/mediacontrol/seekbackwardbutton/seekbackwardbutton.png" COMP;
32 type: IMAGE;
38 image.normal: "widget/mediacontrol/seekbackwardbutton/seekbackwardbutton.png";
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/mediacontrol/seekforwardbutton/
seekforward_button.edc 26 image: "widget/mediacontrol/seekforwardbutton/seekforwardbutton.png" COMP;
32 type: IMAGE;
38 image.normal: "widget/mediacontrol/seekforwardbutton/seekforwardbutton.png";
  /sdk/assetstudio/src/com/android/assetstudiolib/
GraphicGeneratorContext.java 19 import java.awt.image.BufferedImage;
26 * Loads the given image resource, as requested by the graphic generator.
30 * @return The loaded image resource, or null if there was an error.
  /sdk/ninepatch/src/com/android/ninepatch/
GraphicsUtilities.java 20 import java.awt.image.BufferedImage;
21 import java.awt.image.Raster;
32 BufferedImage image = ImageIO.read(resource); local
33 return toCompatibleImage(image);
37 BufferedImage image = ImageIO.read(stream); local
38 return toCompatibleImage(image);
45 public static BufferedImage toCompatibleImage(BufferedImage image) {
47 return image;
50 if (image.getColorModel().equals(getGraphicsConfiguration().getColorModel())) {
51 return image;
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
IconLoader.java 7 import java.awt.image.BufferedImage;
31 public static BufferedImage toCompatibleImage(BufferedImage image) {
33 return image;
36 if (image.getColorModel().equals(
38 return image;
42 image.getWidth(), image.getHeight(), image.getTransparency());
44 g.drawImage(image, 0, 0, null);
  /external/oprofile/daemon/liblegacy/
opd_sample_files.c 43 verbprintf(vsfile, "image lru clear\n");
67 static char * opd_mangle_filename(struct opd_image const * image, int counter,
75 if (image->kernel)
80 values.tid = image->tid;
81 values.tgid = image->tgid;
93 values.image_name = image->name;
94 values.dep_name = separate_lib && image->app_name
95 ? image->app_name : image->name;
103 int opd_open_24_sample_file(struct opd_image * image, int counter, int cpu_nr
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/haiku/
ImageHaiku.cpp 34 #include "Image.h"
70 WTF::PassRefPtr<Image> Image::loadPlatformResource(const char* name)
73 WTF::PassRefPtr<BitmapImage> image = BitmapImage::create(); local
75 image->setData(buffer, true);
77 return image;
99 BBitmap* image = nativeImageForCurrentFrame(); local
100 if (!image || !image->IsValid()) // If the image hasn't fully loaded
126 BBitmap* image = nativeImageForCurrentFrame(); local
    [all...]
  /external/oprofile/libpp/
filename_spec.cpp 30 : image("*"), lib_image("*")
45 return image == rhs.image && lib_image == rhs.lib_image;
48 // lib_name if present or the image name
55 return rhs.image == binary;
64 image = parsed.image;
79 return image != lib_image;
80 return cg_image != image || cg_image != lib_image;
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_image.h 60 void h264bsdWriteMacroblock(image_t *image, u8 *data);
63 void h264bsdWriteOutputBlocks(image_t *image, u32 mbNum, u8 *data,

Completed in 297 milliseconds

12 3 4 5 6 7 8 91011>>