HomeSort by relevance Sort by last modified time
    Searched full:image (Results 51 - 75 of 10027) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/replicaisland/res/xml/
level_2_7_dialog_kyle.xml 7 image="@drawable/kyle_closeup_neutral"
13 image="@drawable/kyle_closeup_neutral"
19 image="@drawable/kyle_closeup_neutral"
level_2_8_dialog_kyle.xml 7 image="@drawable/kyle_closeup_noglasses"
13 image="@drawable/kyle_closeup_noglasses"
19 image="@drawable/kyle_closeup_noglasses"
level_3_3_dialog_wanda.xml 6 image="@drawable/wanda_happy"
12 image="@drawable/wanda_smile"
18 image="@drawable/wanda_smile"
level_3_5_dialog_wanda.xml 6 image="@drawable/wanda_smile"
12 image="@drawable/wanda_smile"
18 image="@drawable/wanda_smile"
level_3_7_dialog_wanda.xml 7 image="@drawable/wanda_smile"
13 image="@drawable/wanda_smile"
19 image="@drawable/wanda_smile"
level_4_5_dialog_wanda.xml 7 image="@drawable/wanda_sad"
13 image="@drawable/wanda_sad"
19 image="@drawable/wanda_sad"
level_4_9_dialog_wanda.xml 7 image="@drawable/wanda_sad"
13 image="@drawable/wanda_sad"
19 image="@drawable/wanda_sad"
level_3_9_dialog_rokudou.xml 7 image="@drawable/rokudou_closeup_normal"
13 image="@drawable/rokudou_closeup_normal"
19 image="@drawable/rokudou_closeup_normal"
25 image="@drawable/rokudou_closeup_normal"
31 image="@drawable/rokudou_closeup_normal"
  /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/chromium_org/ui/gfx/image/
image_unittest.cc 8 #include "ui/gfx/image/image.h"
9 #include "ui/gfx/image/image_png_rep.h"
10 #include "ui/gfx/image/image_skia.h"
11 #include "ui/gfx/image/image_unittest_util.h"
49 gfx::Image image; local
50 EXPECT_EQ(0U, image.RepresentationCount());
51 EXPECT_TRUE(image.IsEmpty());
52 EXPECT_EQ(0, image.Width())
122 gfx::Image image; local
165 gfx::Image image; local
684 gfx::Image image; local
    [all...]
image_skia_unittest.cc 5 #include "ui/gfx/image/image_skia.h"
11 #include "ui/gfx/image/image_skia_rep.h"
12 #include "ui/gfx/image/image_skia_source.h"
29 FixedSource(const ImageSkiaRep& image) : image_(image) {}
117 ImageSkiaRep image(Size(100, 200), 1.0f);
118 ImageSkia image_skia(new FixedSource(image), Size(100, 200));
137 // generate new image skia rep.
162 // generate new image skia rep.
170 // image when there are multiple representations for a scale factor
231 ImageSkia image; local
    [all...]
image_unittest_util_mac.mm 8 #include "ui/gfx/image/image_unittest_util.h"
13 SkColor GetPlatformImageColor(PlatformImage image, int x, int y) {
15 y = [image size].height - y;
17 [image lockFocus];
19 [image unlockFocus];
image_unittest_util.h 5 // Because the unit tests for gfx::Image are spread across multiple
11 #include "ui/gfx/image/image.h"
40 gfx::Image CreateImage();
41 gfx::Image CreateImage(int width, int height);
45 bool IsEqual(const gfx::Image& image1, const gfx::Image& image2);
52 // An image which was not successfully decoded to PNG should be a red bitmap.
54 void CheckImageIndicatesPNGDecodeFailure(const gfx::Image& image);
    [all...]
  /external/jpeg/
jconfig.vms 26 #define BMP_SUPPORTED /* BMP image file format */
27 #define GIF_SUPPORTED /* GIF image file format */
28 #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
29 #undef RLE_SUPPORTED /* Utah RLE image file format */
30 #define TARGA_SUPPORTED /* Targa image file format */
  /external/qemu/distrib/jpeg-6b/
jconfig.vms 26 #define BMP_SUPPORTED /* BMP image file format */
27 #define GIF_SUPPORTED /* GIF image file format */
28 #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
29 #undef RLE_SUPPORTED /* Utah RLE image file format */
30 #define TARGA_SUPPORTED /* Targa image file format */
  /external/pixman/pixman/
pixman-image.c 37 gradient_property_changed (pixman_image_t *image)
39 gradient_t *gradient = &image->gradient;
110 _pixman_image_init (pixman_image_t *image)
112 image_common_t *common = &image->common;
135 _pixman_image_fini (pixman_image_t *image)
137 image_common_t *common = (image_common_t *)image;
143 if (image->common.destroy_func)
144 image->common.destroy_func (image, image->common.destroy_data)
184 pixman_image_t *image = malloc (sizeof (pixman_image_t)); local
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
image_decoration.mm 21 void ImageDecoration::SetImage(NSImage* image) {
22 image_.reset([image retain]);
26 NSImage* image = GetImage();
27 if (!image)
30 // Center the image within the frame.
31 const CGFloat delta_height = NSHeight(frame) - [image size].height;
33 const CGFloat delta_width = NSWidth(frame) - [image size].width;
39 NSImage* image = GetImage();
40 if (image) {
41 const CGFloat image_width = [image size].width
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/location_bar/
image_decoration.mm 19 void ImageDecoration::SetImage(NSImage* image) {
20 image_.reset([image retain]);
24 NSImage* image = GetImage();
25 if (!image)
28 // Center the image within the frame.
29 const CGFloat delta_height = NSHeight(frame) - [image size].height;
31 const CGFloat delta_width = NSWidth(frame) - [image size].width;
37 NSImage* image = GetImage();
38 if (image) {
39 const CGFloat image_width = [image size].width
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_info_util_unittest.cc 12 #include "ui/gfx/image/image_skia.h"
13 #include "ui/gfx/image/image_skia_rep.h"
14 #include "ui/gfx/image/image_unittest_util.h"
18 // Helper function to check that the image is sized properly
20 void VerifyScaling(gfx::Image& image, gfx::Size& size) {
25 ASSERT_FALSE(gfx::test::IsEmpty(image));
26 EXPECT_EQ(image.Size(), size);
28 gfx::ImageSkia image_skia = *image.ToImageSkia();
30 EXPECT_TRUE(image.ToImageSkia()->HasRepresentation(1.0f))
    [all...]
  /packages/apps/Gallery/src/com/android/camera/gallery/
IImageList.java 24 // ImageList and Image classes have one-to-one correspondence.
38 // - Image
44 * The interface of all image collections used in gallery.
50 * Returns the count of image objects.
57 * @return true if the count of image objects is zero.
62 * Returns the image at the ith position.
65 * @return the image at the ith position
70 * Returns the image with a particular Uri.
73 * @return the image with a particular Uri. null if not found.
79 * @param image
    [all...]
  /external/chromium_org/chrome/test/functional/ispy/common/
image_tools.py 5 """Utilities for performing pixel-by-pixel image comparision."""
9 from PIL import Image
22 Exception: One image or fewer is passed in.
34 """Returns an image representing the difference between the two images.
38 the coloration of the generated image.
41 image1: the first image to compare.
42 image2: the second image to compare.
43 mask: an optional mask image consisting of only black and white pixels
44 where white pixels indicate the portion of the image to be masked out.
45 masked_color: the color of a masked section in the resulting image
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
ImageUtils.h 27 * Definition of basic image types
43 * Default number of channels in image.
48 * Definition of an empty image.
53 * Convert image from BGR (interlaced) to YVU (non-interlaced)
56 * out: Resulting image (note must be preallocated before
58 * in: Input image
59 * width: Width of input image
60 * height: Height of input image
67 * Convert image from YVU (non-interlaced) to BGR (interlaced)
70 * out: Resulting image (note must be preallocated befor
    [all...]
  /packages/apps/Camera2/jni/feature_mos/src/mosaic/
ImageUtils.h 27 * Definition of basic image types
43 * Default number of channels in image.
48 * Definition of an empty image.
53 * Convert image from BGR (interlaced) to YVU (non-interlaced)
56 * out: Resulting image (note must be preallocated before
58 * in: Input image
59 * width: Width of input image
60 * height: Height of input image
67 * Convert image from YVU (non-interlaced) to BGR (interlaced)
70 * out: Resulting image (note must be preallocated befor
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
ImageUtils.h 27 * Definition of basic image types
43 * Default number of channels in image.
48 * Definition of an empty image.
53 * Convert image from BGR (interlaced) to YVU (non-interlaced)
56 * out: Resulting image (note must be preallocated before
58 * in: Input image
59 * width: Width of input image
60 * height: Height of input image
67 * Convert image from YVU (non-interlaced) to BGR (interlaced)
70 * out: Resulting image (note must be preallocated befor
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtilsTest.java 26 import java.awt.image.BufferedImage;
36 BufferedImage image = new BufferedImage(100, 100, BufferedImage.TYPE_INT_ARGB_PRE); local
37 Graphics g = image.getGraphics();
39 g.fillRect(0, 0, image.getWidth(), image.getHeight());
42 BufferedImage crop = ImageUtils.cropBlank(image, null);
47 BufferedImage image = new BufferedImage(100, 100, BufferedImage.TYPE_INT_ARGB_PRE); local
48 Graphics g = image.getGraphics();
50 g.fillRect(0, 0, image.getWidth(), image.getHeight())
58 BufferedImage image = new BufferedImage(100, 100, BufferedImage.TYPE_INT_ARGB_PRE); local
71 BufferedImage image = new BufferedImage(100, 100, BufferedImage.TYPE_INT_ARGB_PRE); local
88 BufferedImage image = new BufferedImage(100, 100, BufferedImage.TYPE_INT_ARGB_PRE); local
105 BufferedImage image = new BufferedImage(100, 100, BufferedImage.TYPE_INT_ARGB_PRE); local
122 BufferedImage image = new BufferedImage(100, 100, BufferedImage.TYPE_INT_ARGB_PRE); local
133 BufferedImage image = new BufferedImage(100, 100, BufferedImage.TYPE_INT_ARGB_PRE); local
146 BufferedImage image = new BufferedImage(100, 100, BufferedImage.TYPE_INT_ARGB_PRE); local
162 BufferedImage image = new BufferedImage(100, 100, BufferedImage.TYPE_INT_ARGB_PRE); local
173 BufferedImage image = new BufferedImage(100, 100, BufferedImage.TYPE_INT_ARGB_PRE); local
276 BufferedImage image = new BufferedImage(100, 100, BufferedImage.TYPE_INT_ARGB_PRE); local
321 BufferedImage image = new BufferedImage(100, 100, BufferedImage.TYPE_INT_ARGB_PRE); local
361 BufferedImage image = ImageUtils.createColoredImage(120, 110, new RGB(0xFE, 0xFD, 0xFC)); local
    [all...]

Completed in 1007 milliseconds

1 23 4 5 6 7 8 91011>>