HomeSort by relevance Sort by last modified time
    Searched refs:Image (Results 151 - 175 of 1058) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/chrome/browser/chromeos/login/lock/
screen_locker_delegate.h 21 class Image;
  /external/chromium_org/chrome/browser/extensions/
extension_action_icon_factory.h 23 // own observer when the icon image changes.
29 // Called when the underlying icon image changes.
42 extensions::IconImage* image) OVERRIDE;
52 gfx::Image GetIcon(int tab_id);
62 // Underlying icon image for the default icon.
  /external/chromium_org/chrome/browser/profiles/
profile_info_cache.h 22 class Image;
67 virtual const gfx::Image& GetAvatarIconOfProfileAtIndex(
83 virtual const gfx::Image* GetGAIAPictureOfProfileAtIndex(
117 void SetGAIAPictureOfProfileAtIndex(size_t index, const gfx::Image* image);
151 // Saves the avatar |image| at |image_path|. This is used both for the
154 void SaveAvatarImageAtPath(const gfx::Image* image,
190 // Loads or uses an already loaded high resolution image of the
192 const gfx::Image* GetHighResAvatarOfProfileAtIndex(size_t index) const
    [all...]
  /external/chromium_org/chrome/browser/renderer_context_menu/
spelling_bubble_model.h 30 virtual gfx::Image* GetIcon() const OVERRIDE;
  /external/chromium_org/chrome/browser/thumbnails/
thumbnail_service_impl.h 27 const gfx::Image& thumbnail) OVERRIDE;
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
extension_install_prompt_test_utils.h 43 gfx::Image LoadInstallPromptIcon();
  /external/chromium_org/chrome/browser/ui/panels/
native_panel_stack_window.h 10 #include "ui/gfx/image/image.h"
24 virtual gfx::Image GetIcon() const = 0;
  /external/chromium_org/chrome/browser/ui/test/
test_confirm_bubble_model.h 24 virtual gfx::Image* GetIcon() const OVERRIDE;
  /external/chromium_org/chrome/test/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...]
  /external/chromium_org/extensions/shell/common/
shell_content_client.h 31 virtual gfx::Image& GetNativeImageNamed(int resource_id) const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasPattern.cpp 54 CanvasPattern::CanvasPattern(PassRefPtr<Image> image, Pattern::RepeatMode repeat, bool originClean)
55 : m_pattern(Pattern::createBitmapPattern(image, repeat))
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
CrossfadeGeneratedImage.cpp 35 CrossfadeGeneratedImage::CrossfadeGeneratedImage(Image* fromImage, Image* toImage, float percentage, IntSize crossfadeSize, const IntSize& size)
52 if (m_fromImage == Image::nullImage() || m_toImage == Image::nullImage())
60 // Draw the image we're fading away from.
71 // Draw the image we're fading towards.
104 // Fill with the cross-faded image.
108 // Tile the image buffer into the context.
GeneratedImage.h 30 #include "platform/graphics/Image.h"
35 class PLATFORM_EXPORT GeneratedImage : public Image {
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
WebGLImageConversion.h 9 #include "platform/graphics/Image.h"
15 class Image;
21 // Attempt to enumerate all possible native image formats to
81 ImageExtractor(Image*, ImageHtmlDomSource, bool premultiplyAlpha, bool ignoreGammaAndColorProfile);
94 // Extract the image and keeps track of its status, such as width, height, Source Alignment, format and AlphaOp etc.
100 Image* m_image;
116 // Computes the image size in bytes. If paddingInBytes is not null, padding
136 // Packs the contents of the given Image which is passed in |pixels| into the passed Vector
139 static bool packImageData(Image*, const void* pixels, GLenum format, GLenum type, bool flipY, AlphaOp, DataFormat sourceFormat, unsigned width, unsigned height, unsigned sourceUnpackAlignment, Vector<uint8_t>& data);
  /external/chromium_org/ui/base/resource/
resource_bundle_android.cc 29 gfx::Image& ResourceBundle::GetNativeImageNamed(int resource_id, ImageRTL rtl) {
30 // Flipped image is not used on Android.
resource_bundle_auralinux.cc 15 #include "ui/gfx/image/image.h"
45 gfx::Image& ResourceBundle::GetNativeImageNamed(int resource_id, ImageRTL rtl) {
46 // Flipped image is not used on ChromeOS.
  /external/chromium_org/ui/message_center/
notification_list.h 23 class Image;
76 const gfx::Image& image);
80 const gfx::Image& image);
85 const gfx::Image& image);
notifier_settings.h 12 #include "ui/gfx/image/image.h"
100 // The icon image of the notifier. The extension icon or favicon.
101 gfx::Image icon;
108 NotifierGroup(const gfx::Image& icon,
115 const gfx::Image icon;
137 const gfx::Image& icon) = 0;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DrawUtils.java 20 import org.eclipse.swt.graphics.Image;
74 * Draws image at given <code>x</code> and centered vertically.
76 public static final void drawImageCV(GC gc, Image image, int x, int y, int height) {
77 if (image != null) {
78 Rectangle imageBounds = image.getBounds();
79 gc.drawImage(image, x, y + (height - imageBounds.height) / 2);
84 * Draws image at given <code>x</code> and centered vertically.
86 public static final void drawImageCHCV(GC gc, Image image, int x, int y, int width, int height)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
ShadowPainter.java 22 import java.awt.Image;
23 import java.awt.image.BufferedImage;
24 import java.awt.image.DataBufferInt;
33 * Adds a drop shadow to a semi-transparent image (of an arbitrary shape) and returns it as a
34 * new image. This method attempts to mimic the same visual characteristics as the rectangular
35 * shadow painting methods in this class, {@link #createRectangularDropShadow(java.awt.image.BufferedImage)}
36 * and {@link #createSmallRectangularDropShadow(java.awt.image.BufferedImage)}.
38 * @param source the source image
42 * @return a new image with the shadow painted in
52 * Creates a drop shadow of a given image and returns a new image which shows the input image o
72 BufferedImage image; local
184 BufferedImage image; local
212 BufferedImage image; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusimpl.h 5 * Image, InstalledFontCollection, PrivateFontCollection, Region
41 // Image
43 __inline__ Image* Image::FromFile(const WCHAR *filename,
46 return new Image(filename, useEmbeddedColorManagement);
49 __inline__ Image* Image::FromStream(IStream *stream,
52 return new Image(stream, useEmbeddedColorManagement);
55 __inline__ Image::Image(const WCHAR *filename, BOOL useEmbeddedColorManagement)
    [all...]
  /external/chromium_org/ui/base/models/
simple_menu_model.cc 10 #include "ui/gfx/image/image.h"
21 gfx::Image icon;
57 int command_id, gfx::Image* image_skia) const {
89 gfx::Image(), TYPE_COMMAND, -1, NULL, NULL, NORMAL_SEPARATOR };
100 gfx::Image(), TYPE_CHECK, -1, NULL, NULL, NORMAL_SEPARATOR };
112 gfx::Image(), TYPE_RADIO, group_id, NULL, NULL,
138 base::string16(), gfx::Image(), TYPE_SEPARATOR, -1, NULL, NULL,
152 base::string16(), gfx::Image(), TYPE_BUTTON_ITEM, -1, NULL,
161 gfx::Image(), TYPE_SUBMENU, -1, model, NULL, NORMAL_SEPARATOR }
    [all...]
  /frameworks/base/media/java/android/media/
ImageReader.java 32 * <p>The ImageReader class allows direct application access to image data
38 * {@link android.renderscript.Allocation RenderScript Allocations}. The image
42 * <p>The image data is encapsulated in {@link Image} objects, and multiple such
46 * or {@link #acquireNextImage} call. Due to memory limits, an image source will
54 * Returned by nativeImageSetup when acquiring the image was successful.
72 * <p>The {@code maxImages} parameter determines the maximum number of {@link Image}
77 * <p>The valid sizes and formats depend on the source of the image
85 * The format of the Image that this reader will produce. This
93 * has to be released before a new Image will become available for acces
248 Image image = acquireNextImage(); local
    [all...]
  /bootable/recovery/tools/ota/
convert-to-bmp.py 4 RGBA image."""
7 import Image
16 im = Image.open(infile)
37 "L" # size of image data (0 if uncompressed)
79 print >> sys.stderr, "Don't know how to handle image mode '%s'." % (im.mode,)
  /cts/apps/CameraITS/build/
envsetup.sh 32 for M in numpy PIL Image matplotlib pylab cv2 scipy.stats scipy.spatial
40 for M in device objects image caps dng target error

Completed in 765 milliseconds

1 2 3 4 5 67 8 91011>>