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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/tabs/
tab_utils.h 21 class Image;
71 // Returns a cached image, to be shown by the media indicator for the given
73 const gfx::Image& GetTabMediaIndicatorImage(TabMediaState media_state);
75 // Returns the cached image, to be shown by the media indicator button for mouse
78 const gfx::Image& GetTabMediaIndicatorAffordanceImage(
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
screenlock_icon_source.cc 14 gfx::Image GetDefaultIcon() {
15 return gfx::Image();
51 gfx::Image image = icon_provider_->GetIcon(username); local
52 if (image.IsEmpty()) {
57 callback.Run(image.As1xPNGBytes().get());
61 return "image/png";
  /external/chromium_org/chromecast/common/
cast_resource_delegate.h 20 class Image;
42 virtual gfx::Image GetImageNamed(int resource_id) OVERRIDE;
43 virtual gfx::Image GetNativeImageNamed(
  /external/chromium_org/ui/views/linux_ui/
linux_ui.h 28 class Image;
80 // Returns a themed image per theme_provider.h
81 virtual gfx::Image GetThemeImageNamed(int id) const = 0;
117 const gfx::ImageSkia& image,
123 virtual gfx::Image GetIconForContentType(
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
GraphicsUtilitiesTest.java 23 import org.eclipse.swt.graphics.Image;
39 Image image = new Image(Display.getDefault(), local
41 ImageData baseData = image.getImageData();
79 Image image = new Image(Display.getDefault(), local
82 ImageData baseData = image.getImageData();
100 Image image = new Image(Display.getDefault() local
134 Image image = new Image(Display.getDefault(), local
208 Image image = new Image(Display.getDefault(), local
224 Image image = new Image(Display.getDefault(), local
299 Image image = new Image(Display.getDefault(), local
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_types.h 18 #include "ui/gfx/image/image.h"
146 const gfx::Image& icon,
148 const gfx::Image& extra_icon);
161 gfx::Image icon;
163 gfx::Image extra_icon;
178 // A struct to describe a dialog overlay. If |image| is empty, no overlay should
184 // If empty, there should not be an overlay. If non-empty, an image that is
186 gfx::Image image; member in struct:autofill::DialogOverlayState
    [all...]
  /external/chromium_org/components/enhanced_bookmarks/
bookmark_image_service.h 39 typedef base::Callback<void(const gfx::Image&, const GURL& url)> Callback;
44 // Returns a salient image for a URL. This may trigger a network request for
45 // the image if the image was not retrieved before and if a bookmark node has
46 // a URL for this salient image available. The image (which may be empty) is
80 // Returns true if the image for the page_url is currently being fetched.
83 // Once an image has been retrieved, store the image and notify all the
87 const gfx::Image& image
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageLayerChromiumTest.cpp 26 #include "platform/graphics/Image.h"
45 class TestImage : public Image {
54 : Image(0)
85 // Stub implementations of pure virtual Image functions.
118 RefPtr<Image> image = TestImage::create(IntSize(100, 100), false); local
119 ASSERT_TRUE(image.get());
121 graphicsLayer->setContentsToImage(image.get());
136 RefPtr<Image> opaqueImage = TestImage::create(IntSize(100, 100), true /* opaque */);
138 RefPtr<Image> nonOpaqueImage = TestImage::create(IntSize(100, 100), false /* opaque */)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
FlagManagerTest.java 21 import org.eclipse.swt.graphics.Image;
36 Image us = manager.getFlag("US");
37 Image gb = manager.getFlag("GB");
38 Image ca = manager.getFlag("CA");
39 Image es = manager.getFlag("ES");
40 Image br = manager.getFlag("BR");
41 Image pt = manager.getFlag("PT");
  /external/chromium_org/ui/snapshot/
snapshot_aura_unittest.cc 22 #include "ui/gfx/image/image.h"
59 size_t GetFailedPixelsCountWithScaleFactor(const gfx::Image& image,
61 const SkBitmap* bitmap = image.ToSkBitmap();
76 size_t GetFailedPixelsCount(const gfx::Image& image) {
77 return GetFailedPixelsCountWithScaleFactor(image, 1);
127 gfx::Image GrabSnapshotForTestWindow() {
143 // Run internal snapshot callback to scale/rotate response image
170 const gfx::Image& image() const { return image_; } function in class:ui::SnapshotAuraTest::SnapshotHolder
    [all...]
  /external/chromium_org/ui/wm/core/
image_grid_unittest.cc 10 #include "ui/gfx/image/image.h"
11 #include "ui/gfx/image/image_skia.h"
17 // Creates a gfx::Image with the requested dimensions.
18 gfx::Image* CreateImage(const gfx::Size& size) {
21 return new gfx::Image(gfx::ImageSkia::CreateFrom1xBitmap(bitmap));
34 scoped_ptr<gfx::Image> image_1x1(CreateImage(gfx::Size(1, 1)));
35 scoped_ptr<gfx::Image> image_1xB(CreateImage(gfx::Size(1, kBorder)));
36 scoped_ptr<gfx::Image> image_Bx1(CreateImage(gfx::Size(kBorder, 1)));
37 scoped_ptr<gfx::Image> image_BxB(CreateImage(gfx::Size(kBorder, kBorder)))
    [all...]
  /external/chromium_org/chrome/browser/favicon/
favicon_handler.h 19 #include "ui/gfx/image/image.h"
96 // Processes the current image_irls_ entry, requesting the image from the
100 // Message handler for ImageHostMsg_DidDownloadImage. Called when the image
102 // |bitmaps| is a list of all the frames of the image at |image_url|.
146 const gfx::Image& image);
159 // Represents an in progress download of an image from the renderer.
180 const gfx::Image& image,
186 gfx::Image image; member in struct:FaviconHandler::FaviconCandidate
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CImageLabel.java 15 import org.eclipse.swt.graphics.Image;
24 * Simple control for displaying image and text.
34 private Image m_image;
64 public Image getImage() {
68 public void setImage(Image image) {
69 m_image = image;
87 private Image m_backImage;
91 // prepare back image
98 m_backImage = new Image(getDisplay(), clientArea.width, clientArea.height)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintOverlay.java 26 import org.eclipse.swt.graphics.Image;
44 private Image mWarningImage;
45 private Image mErrorImage;
70 Image icon = getWarningIcon();
77 // Right/bottom edges of the canvas image; don't paint overlays outside of
125 private Image getWarningIcon() {
133 private Image getErrorIcon() {
  /external/chromium_org/chrome/browser/extensions/api/omnibox/
omnibox_api.h 37 class Image;
102 gfx::Image GetOmniboxIcon(const std::string& extension_id);
106 gfx::Image GetOmniboxPopupIcon(const std::string& extension_id);
  /external/chromium_org/chrome/browser/status_icons/
status_icon_menu_model.h 15 class Image;
74 void ChangeIconForCommandId(int command_id, const gfx::Image& icon);
88 virtual bool GetIconForCommandId(int command_id, gfx::Image* icon) const
  /external/chromium_org/chrome/test/ispy/
ispy_api_unittest.py 9 from PIL import Image
22 self.white_img = Image.new('RGBA', (10, 10), (255, 255, 255, 255))
23 self.black_img = Image.new('RGBA', (10, 10), (0, 0, 0, 255))
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImage.h 30 #include "platform/graphics/Image.h"
42 class SVGImage FINAL : public Image {
65 // Returns the SVG image document's frame.
68 // Does the SVG image/document contain any animations?
112 ImageObserverDisabler(Image* image)
113 : m_image(image)
125 Image* m_image;
SVGImageCache.cpp 82 Image* SVGImageCache::imageForRenderer(const RenderObject* renderer)
85 return Image::nullImage();
89 return Image::nullImage();
  /external/chromium_org/ui/message_center/
fake_message_center.cc 82 const gfx::Image& image) {
86 const gfx::Image& image) {
92 const gfx::Image& image) {
fake_message_center.h 45 const gfx::Image& image) OVERRIDE;
48 const gfx::Image& image) OVERRIDE;
52 const gfx::Image& image) OVERRIDE;
message_center.h 101 // Sets the icon image. Icon appears at the top-left of the notification.
103 const gfx::Image& image) = 0;
105 // Sets the large image for the notifications of type == TYPE_IMAGE. Specified
106 // image will appear below of the notification.
108 const gfx::Image& image) = 0;
110 // Sets the image for the icon of the specific action button.
113 const gfx::Image& image) = 0
    [all...]
  /packages/apps/Camera2/src/com/android/camera/util/
JpegUtilNative.java 19 import android.media.Image;
20 import android.media.Image.Plane;
35 * Compresses an image from YUV422 format to jpeg.
37 * @param yBuf the buffer containing the Y component of the image
40 * @param cbBuf the buffer containing the Cb component of the image
43 * @param crBuf the buffer containing the Cr component of the image
71 * Compresses the given image to jpeg. Note that only ImageFormat.YUV_420_888 is currently
74 * @param img the image to compress
78 public static int compressJpegFromYUV420Image(Image img, ByteBuffer outBuf, int quality) {
80 throw new RuntimeException("Unsupported Image Format.")
    [all...]
  /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);

Completed in 3704 milliseconds

1 2 3 4 56 7 8 91011>>