HomeSort by relevance Sort by last modified time
    Searched refs:Image (Results 101 - 125 of 880) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/tests/
ui_gfx_image_unittest.cc 8 #include "ui/gfx/image/image.h"
9 #include "ui/gfx/image/image_unittest_util.h"
20 gfx::Image image(gfx::test::CreatePlatformImage());
27 image_view->SetImage(*image.ToImageSkia());
  /external/chromium_org/chromecast/common/
cast_resource_delegate.cc 9 #include "ui/gfx/image/image.h"
54 gfx::Image CastResourceDelegate::GetImageNamed(int resource_id) {
55 return gfx::Image();
58 gfx::Image CastResourceDelegate::GetNativeImageNamed(
61 return gfx::Image();
cast_resource_delegate.h 20 class Image;
42 virtual gfx::Image GetImageNamed(int resource_id) OVERRIDE;
43 virtual gfx::Image GetNativeImageNamed(
  /external/chromium_org/chromecast/shell/common/
cast_content_client.h 27 virtual gfx::Image& GetNativeImageNamed(int resource_id) const OVERRIDE;
  /external/chromium_org/components/favicon_base/
favicon_types.h 9 #include "ui/gfx/image/image.h"
29 // Defines a gfx::Image of size desired_size_in_dip composed of image
35 // The resulting image.
36 gfx::Image image; member in struct:favicon_base::FaviconImageResult
38 // The URL of the favicon which contains all of the image representations of
39 // |image|.
40 // TODO(pkotwicz): Return multiple |icon_urls| to allow |image| to hav
    [all...]
  /external/chromium_org/content/shell/common/
shell_content_client.h 29 virtual gfx::Image& GetNativeImageNamed(int resource_id) const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ShapeValue.h 47 Image
60 static PassRefPtr<ShapeValue> createImageValue(PassRefPtr<StyleImage> image)
62 return adoptRef(new ShapeValue(image));
68 StyleImage* image() const { return m_image.get(); } function in class:blink::ShapeValue
71 if (!image())
73 if (image()->isImageResource() || image()->isImageResourceSet())
74 return image()->cachedImage() && image()->cachedImage()->hasImage();
75 return image()->isGeneratedImage()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImageCache.h 25 #include "platform/graphics/Image.h"
42 static PassOwnPtr<SVGImageCache> create(SVGImage* image)
44 return adoptPtr(new SVGImageCache(image));
52 Image* imageForRenderer(const RenderObject*);
  /external/chromium_org/ui/gfx/image/
image_util.cc 5 #include "ui/gfx/image/image_util.h"
10 #include "ui/gfx/image/image.h"
11 #include "ui/gfx/image/image_skia.h"
19 Image ImageFrom1xJPEGEncodedData(const unsigned char* input,
23 return Image::CreateFrom1xBitmap(*bitmap);
25 return Image();
28 bool JPEG1xEncodedDataFromImage(const Image& image, int quality,
31 image.AsImageSkia().GetRepresentation(1.0f)
    [all...]
  /bootable/recovery/
interlace-frames.py 16 and turn it into a single output image which contains the input frames
22 import Image
28 frames = [Image.open(fn).convert("RGB") for fn in sys.argv[1:-1]]
38 out = Image.new("RGB", (w, h*N))
44 # When loading this image, the graphics library expects to find a text
  /external/chromium_org/chrome/browser/profiles/
profile_info_interface.h 16 class Image;
40 virtual const gfx::Image& GetAvatarIconOfProfileAtIndex(
56 virtual const gfx::Image* GetGAIAPictureOfProfileAtIndex(
  /external/chromium_org/chrome/browser/themes/
theme_service_aurax11.cc 12 #include "ui/gfx/image/image.h"
26 virtual gfx::Image GetImageNamed(int id) OVERRIDE;
61 gfx::Image SystemThemeX11::GetImageNamed(int id) {
62 return linux_ui_ ? linux_ui_->GetThemeImageNamed(id) : gfx::Image();
  /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/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(
  /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...]
  /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...]
  /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))

Completed in 596 milliseconds

1 2 3 45 6 7 8 91011>>