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

1 2 3 4 5 6 7 891011>>

  /packages/apps/Camera2/jni/feature_mos/src/mosaic/
MosaicTypes.h 64 * Note: Currently assumes a YVU image
70 ImageType image; member in class:MosaicFrame
84 image = ImageUtils::allocateImage(width, height, ImageUtils::IMAGE_TYPE_NUM_CHANNELS);
91 if (image)
92 free(image);
96 * Get the V plane of the image.
100 return (image + (width*height));
104 * Get the U plane of the image.
108 return (image + (width*height*2));
112 * Get a pixel from the V plane of the image
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
MosaicTypes.h 64 * Note: Currently assumes a YVU image
70 ImageType image; member in class:MosaicFrame
84 image = ImageUtils::allocateImage(width, height, ImageUtils::IMAGE_TYPE_NUM_CHANNELS);
91 if (image)
92 free(image);
96 * Get the V plane of the image.
100 return (image + (width*height));
104 * Get the U plane of the image.
108 return (image + (width*height*2));
112 * Get a pixel from the V plane of the image
    [all...]
  /external/chromium_org/ppapi/api/
ppb_image_data.idl 8 * a browser handles image data.
19 * image data formats.
27 * red, green and blue color components of the pixel data supplied to an image
30 * premultiplied components for image data:
37 * ...components for image data are 8-bit values ranging from 0 to 255...
57 * image data.
62 * This value represents one of the image data types in the
79 * functions for determining the browser's treatment of image data.
84 * image data. The browser uses this format internally for painting. Other
93 * IsImageDataFormatSupported() determines if the given image data format i
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_screen.c 250 __DRIimage *image; local
252 image = CALLOC(sizeof *image);
253 if (image == NULL)
256 image->dri_format = dri_format;
257 image->offset = 0;
261 image->format = MESA_FORMAT_RGB565;
264 image->format = MESA_FORMAT_XRGB8888;
267 image->format = MESA_FORMAT_ARGB8888;
270 image->format = MESA_FORMAT_RGBA8888_REV
301 __DRIimage *image; local
324 __DRIimage *image; local
384 __DRIimage *image; local
442 __DRIimage *image; local
486 __DRIimage *image; local
525 __DRIimage *image; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_screen.c 250 __DRIimage *image; local
252 image = CALLOC(sizeof *image);
253 if (image == NULL)
256 image->dri_format = dri_format;
257 image->offset = 0;
261 image->format = MESA_FORMAT_RGB565;
264 image->format = MESA_FORMAT_XRGB8888;
267 image->format = MESA_FORMAT_ARGB8888;
270 image->format = MESA_FORMAT_RGBA8888_REV
301 __DRIimage *image; local
324 __DRIimage *image; local
384 __DRIimage *image; local
442 __DRIimage *image; local
486 __DRIimage *image; local
525 __DRIimage *image; local
    [all...]
  /external/proguard/src/proguard/gui/splash/
BufferedSprite.java 24 import java.awt.image.BufferedImage;
27 * This Sprite encapsulates another Sprite, which is then buffered in an Image.
35 private final Image bufferImage;
45 * Creates a new BufferedSprite with an ABGR image.
46 * @param bufferX the x offset of the buffer image.
47 * @param bufferY the y offset of the buffer image.
48 * @param width the width of the buffer image.
49 * @param height the height of the buffer image.
51 * @param x the variable x ordinate of the image buffer for painting.
52 * @param y the variable y ordinate of the image buffer for painting
    [all...]
  /external/chromium/chrome/browser/ui/tests/
ui_gfx_image_unittest.cc 8 #include "ui/gfx/image.h"
25 gfx::Image image(gfx::test::CreatePlatformImage());
32 image_view->SetImage(image);
46 gfx::Image image(gfx::test::CreateBitmap());
47 GtkWidget* image_view = gtk_image_new_from_pixbuf(image);
  /external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps_context_2d.h 26 PP_Resource image; member in struct:__anon8811
43 * Query the native system image format.
51 * image resources in response to events.
58 * Points the data member of the context to the raw pixels of the image for
59 * writing to the screen. The image will become visible after a swap.
66 * Swaps out the currently visible graphics with the data stored in the image
67 * buffer making it visible. The old image resource will no longer be
  /external/chromium_org/third_party/WebKit/ManualTests/
drag-with-div-or-image-as-data-image.html 37 <p>When you drag the first div, the image under the cursor should be of the second image. </p>
38 <p>When you drag the first image, the image under the cursor should be of the second div. </p>
49 <img src="resources/drag-image.png" id="imgToUseAsImage" />
52 <div id="divToUseAsImage"> When a drag is started on the image, this is the div that is used as the drag image! (second div)</div>
  /external/chromium_org/ui/views/controls/menu/
menu_image_util.h 14 // Returns the Menu Check box image (always checked).
15 // The returned image is global object and should not be freed.
20 // Return the RadioButton image for given state.
21 // It returns the "selected" image when |selected| is
22 // true, or the "unselected" image if false.
23 // The returned image is global object and should not be freed.
26 // Returns the image for submenu arrow for current RTL setting.
  /external/e2fsprogs/lib/ext2fs/
e2image.h 2 * e2image.h --- header file describing the ext2 image format
18 char magic_descriptor[16]; /* "Ext2 Image 1.0", w/ null padding */
19 char fs_hostname[64];/* Hostname of machine of image */
22 __u32 fs_device; /* Device number of image */
28 __u32 image_device; /* Device number of image file */
29 __u32 image_inode; /* Inode number of image file */
30 __u32 image_time; /* Time of image creation */
  /frameworks/base/libs/hwui/
Image.cpp 22 #include "Image.h"
27 Image::Image(sp<GraphicBuffer> buffer) {
37 ALOGW("Error creating image (%#x)", eglGetError());
47 ALOGW("Error creating image (%#x)", status);
52 Image::~Image() {
  /packages/apps/Gallery/tests/src/com/android/camera/gallery/
MockImageList.java 36 public int getImageIndex(IImage image) {
37 return mList.indexOf(image);
44 public boolean removeImage(IImage image) {
45 return mList.remove(image);
52 public void addImage(MockImage image) {
53 mList.add(image);
54 image.setContainer(this);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
NinePatchedImageTest.java 38 NinePatchedImage image = new NinePatchedImage(getClass() local
40 assertNotNull(image);
42 ImageData data = image.getImageData();
49 assertFalse(image.hasNinePatchExtension());
54 NinePatchedImage image = new NinePatchedImage(getClass() local
56 assertNotNull(image);
58 ImageData data = image.getImageData();
65 assertFalse(image.hasNinePatchExtension());
70 NinePatchedImage image = new NinePatchedImage(getClass() local
72 assertNotNull(image);
117 NinePatchedImage image = new NinePatchedImage(getClass() local
152 NinePatchedImage image = new NinePatchedImage(getClass() local
186 NinePatchedImage image = new NinePatchedImage(getClass() local
204 NinePatchedImage image = new NinePatchedImage(getClass() local
309 NinePatchedImage image = new NinePatchedImage(getClass() local
626 NinePatchedImage image = new NinePatchedImage(getClass() local
646 NinePatchedImage image = new NinePatchedImage(getClass() local
666 NinePatchedImage image = new NinePatchedImage(getClass() local
698 NinePatchedImage image = new NinePatchedImage(getClass() local
757 NinePatchedImage image = new NinePatchedImage(getClass() local
900 NinePatchedImage image = new NinePatchedImage(getClass() local
    [all...]
  /external/pixman/pixman/
pixman-bits-image.c 56 fetch_pixel_no_alpha (bits_image_t *image,
60 (x < 0 || x >= image->width || y < 0 || y >= image->height))
65 return image->fetch_pixel_32 (image, x, y);
68 typedef uint32_t (* get_pixel_t) (bits_image_t *image,
72 bits_image_fetch_pixel_nearest (bits_image_t *image,
80 if (image->common.repeat != PIXMAN_REPEAT_NONE)
82 repeat (image->common.repeat, &x0, image->width)
565 pixman_image_t *image = iter->image; local
658 pixman_image_t *image = iter->image; local
1318 pixman_image_t *image = iter->image; local
1343 pixman_image_t *image = iter->image; local
1525 pixman_image_t *image = iter->image; local
1563 bits_image_t * image = &iter->image->bits; local
1599 bits_image_t * image = &iter->image->bits; local
1622 bits_image_t * image = &iter->image->bits; local
1760 pixman_image_t *image; local
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
default_images_view.h 20 // View used for selecting user image on OOBE screen.
31 // Called when user selects an image.
40 // Returns the index of the selected default image or -1 if there's no
41 // selected image.
44 // Allows to specify the selected image index specifically.
47 // Unselects the selected image if there's one.
57 // Resizes and sets image with specified resource id for the button.
63 // Vector of image buttons corresponding to default images and take photo
67 // Index of the currently selected image or -1.
user_image_downloader.h 20 // Gets user image URL from user's Google Profile, downloads the image,
21 // executes image decode and calls UserManager to store image in a file with
48 // Parses received JSON data looking for user image url.
53 // Searches for image url in a list of contacts matching contact address
54 // with user email. Returns true and image url if succeeds, false
62 // Searches for image url in list of links for the found contact.
63 // Returns true and image url if succeeds, false otherwise.
66 // Encodes user image in PNG format and saves the result to the fil
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
hover_image_button_unittest.mm 14 #include "ui/gfx/image.h"
38 NSImage* image = rb.GetNativeImageNamed(IDR_HOME);
40 [button_ setDefaultImage:image];
45 EXPECT_EQ([button_ image], hover);
48 EXPECT_EQ([button_ image], image);
54 NSImage* image = rb.GetNativeImageNamed(IDR_HOME);
55 [button_ setDefaultImage:image];
57 [button_ setHoverImage:image];
  /external/chromium_org/ash/desktop_background/
wallpaper_resizer.h 14 #include "ui/gfx/image/image_skia.h"
24 // Returns a unique identifier corresponding to |image|, suitable for
25 // comparison against the value returned by original_image_id(). If the image
27 static uint32_t GetImageId(const gfx::ImageSkia& image);
33 WallpaperResizer(const gfx::ImageSkia& image,
39 const gfx::ImageSkia& image() const { return image_; } function in class:ash::WallpaperResizer
58 // Image that should currently be used for wallpaper. It initially
59 // contains the original image and is updated to contain the resized
60 // image by OnResizeFinished().
  /external/chromium_org/chrome/browser/ui/gtk/
nine_box.h 11 class Image;
15 // non-corner images can be tiled to make a larger image. It's used to
16 // use bitmaps for constructing image-based resizable widgets like buttons.
18 // If you want just a vertical image that stretches in height but is fixed
20 // Similarly, for a horizontal image that stretches in width but is fixed in
25 // ids that will be passed to the resource bundle. Use 0 for no image.
29 // Construct a NineBox from a single image and insets indicating the sizes
31 NineBox(int image, int top_margin, int bottom_margin, int left_margin,
50 gfx::Image* images_[9];
  /external/chromium_org/third_party/WebKit/Source/core/frame/
ImageBitmap.h 11 #include "platform/graphics/Image.h"
29 static PassRefPtr<ImageBitmap> create(Image*, const IntRect&);
31 PassRefPtr<Image> bitmapImage() const;
49 ImageBitmap(Image*, const IntRect&);
56 // the image source changes.
58 RefPtr<Image> m_bitmap;
60 IntRect m_bitmapRect; // The rect where the underlying Image should be placed in reference to the ImageBitmap.
63 // The offset by which the desired Image is stored internally.
65 // ImageBitmaps not constructed from HTMLImageElements always pre-crop and store the image at (0, 0).
  /external/chromium_org/ui/base/dragdrop/
drag_utils.h 29 // Creates a dragging image to be displayed when the user drags a file from
30 // Chrome (via the download manager, for example). The drag image is set into
32 // portion will be truncated in the drag image.
37 // Sets the drag image on data_object from the supplied canvas. width/height
38 // are the size of the image to use, and the offsets give the location of
39 // the hotspot for the drag image.
45 // Sets the drag image on data_object from the supplied ImageSkia. width/height
46 // are the size of the image to use, and the offsets give the location of
47 // the hotspot for the drag image.
  /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;
  /external/chromium_org/chrome/browser/download/
drag_download_item.h 15 class Image;
19 // DownloadItem. If |icon| is NULL, no image will be accompany the drag. |view|
22 gfx::Image* icon,
  /external/chromium_org/chrome/browser/resources/options/chromeos/
change_picture_options.css 9 #user-image-grid {
21 #user-image-grid * {
26 #user-image-grid img {
33 #user-image-grid > li {
41 #user-image-grid [selected] {
47 * #user-image-preview can have the following classes:
48 * .default-image: one of the default images is selected (including the grey
50 * .profile-image: profile image is selected;
56 #user-image-preview
    [all...]

Completed in 2227 milliseconds

1 2 3 4 5 6 7 891011>>