/external/chromium_org/ui/message_center/ |
fake_message_center.cc | 81 const gfx::Image& image) { 85 const gfx::Image& image) { 91 const gfx::Image& image) {
|
fake_message_center.h | 44 const gfx::Image& image) OVERRIDE; 47 const gfx::Image& image) OVERRIDE; 51 const gfx::Image& image) OVERRIDE;
|
message_center.h | 92 // Sets the icon image. Icon appears at the top-left of the notification. 94 const gfx::Image& image) = 0; 96 // Sets the large image for the notifications of type == TYPE_IMAGE. Specified 97 // image will appear below of the notification. 99 const gfx::Image& image) = 0; 101 // Sets the image for the icon of the specific action button. 104 const gfx::Image& image) = 0 [all...] |
notifier_settings.h | 12 #include "ui/gfx/image/image.h" 101 // The icon image of the notifier. The extension icon or favicon. 102 gfx::Image icon; 109 NotifierGroup(const gfx::Image& icon, 116 const gfx::Image icon; 138 const gfx::Image& icon) = 0;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
UiModelTreeLabelProvider.java | 26 import org.eclipse.swt.graphics.Image; 44 public Image getImage(Object element) { 56 Image img = desc.getCustomizedIcon();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
ProtoBufUtils.java | 21 import org.eclipse.swt.graphics.Image; 42 assert size == width * height * 4 : "Unexpected image size after decompression."; 65 /** Obtains the image stored in provided protocol buffer message. */ 66 public static Image getImage(Display display, GLMessage glMsg) { 76 "Unexpected error while retrieving framebuffer image: " + e); 84 return new Image(display, imageData);
|
/external/chromium_org/apps/shell/ |
shell_content_client.cc | 41 gfx::Image& ShellContentClient::GetNativeImageNamed(int resource_id) const {
|
/external/chromium_org/chrome/browser/chromeos/login/ |
screen_locker_delegate.h | 20 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/notifications/sync_notifier/ |
synced_notification.h | 20 #include "ui/gfx/image/image.h" 124 gfx::Image app_icon_bitmap_; 125 gfx::Image sender_bitmap_; 126 gfx::Image image_bitmap_; 127 std::vector<gfx::Image> button_bitmaps_;
|
/external/chromium_org/chrome/browser/tab_contents/ |
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 | 42 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/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...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLCanvasElement.h | 45 class Image; 109 Image* copiedImage() const; 171 mutable RefPtr<Image> m_presentedImage; 172 mutable RefPtr<Image> m_copiedImage; // FIXME: This is temporary for platforms that have to copy the image buffer to render (and for CSSCanvasValue).
|
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
CanvasPattern.cpp | 60 CanvasPattern::CanvasPattern(PassRefPtr<Image> image, bool repeatX, bool repeatY, bool originClean) 61 : m_pattern(Pattern::create(image, repeatX, repeatY))
|
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
PasswordGeneratorButtonElement.cpp | 43 #include "platform/graphics/Image.h" 75 ImageResource* image = m_isInHoverState ? imageForHoverState() : imageForNormalState(); local 76 ASSERT(image); 77 resource->setImageResource(image); 95 RenderImage* image = new RenderImage(this); local 96 image->setImageResource(RenderImageResource::create()); 97 return image; 109 RefPtr<Image> image = Image::loadPlatformResource("generatePassword") local 118 RefPtr<Image> image = Image::loadPlatformResource("generatePasswordHover"); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
ImageQualityController.h | 37 #include "platform/graphics/Image.h" 56 bool shouldPaintAtLowQuality(GraphicsContext*, RenderObject*, Image*, const void* layer, const LayoutSize&);
|
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/ |
SVGImageCache.h | 25 #include "platform/graphics/Image.h" 44 static PassOwnPtr<SVGImageCache> create(SVGImage* image) 46 return adoptPtr(new SVGImageCache(image)); 54 Image* imageForRenderer(const RenderObject*);
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
CrossfadeGeneratedImage.cpp | 37 CrossfadeGeneratedImage::CrossfadeGeneratedImage(Image* fromImage, Image* toImage, float percentage, IntSize crossfadeSize, const IntSize& size) 54 if (m_fromImage == Image::nullImage() || m_toImage == Image::nullImage()) 62 // Draw the image we're fading away from. 73 // Draw the image we're fading towards. 106 // Fill with the cross-faded image. 110 // 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/ui/base/resource/ |
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/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...] |