Searched refs:Image (Results 51 - 75 of 863) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DPattern.h34 #include "platform/graphics/Image.h"
53 static PassRefPtr<Pattern> createBitmapPattern(PassRefPtr<Image> tileImage,
62 Pattern(PassRefPtr<Image>, RepeatMode);
/external/chromium_org/ui/wm/core/
H A Dimage_grid.h19 class Image;
112 void SetImages(const gfx::Image* top_left_image,
113 const gfx::Image* top_image,
114 const gfx::Image* top_right_image,
115 const gfx::Image* left_image,
116 const gfx::Image* center_image,
117 const gfx::Image* right_image,
118 const gfx::Image* bottom_left_image,
119 const gfx::Image* bottom_image,
120 const gfx::Image* bottom_right_imag
[all...]
/external/chromium_org/components/enhanced_bookmarks/
H A Dimage_store_unittest.cc18 gfx::Image CreateImage(int width, int height, int a, int r, int g, int b) {
22 gfx::Image image(gfx::Image::CreateFrom1xBitmap(bitmap));
32 gfx::Image GenerateWhiteImage() {
36 gfx::Image GenerateBlackImage(int width, int height) {
40 gfx::Image GenerateBlackImage() {
45 bool CompareImages(const gfx::Image& image_1, const gfx::Image& image_2) {
140 gfx::Image src_image = GenerateBlackImage(42, 24);
145 std::pair<gfx::Image, GUR
[all...]
H A Dimage_store.cc21 std::pair<gfx::Image, GURL> image_info = Get(from);
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
H A DSVGFEImage.h33 class Image;
38 static PassRefPtr<FEImage> createWithImage(Filter*, PassRefPtr<Image>, PassRefPtr<SVGPreserveAspectRatio>);
50 FEImage(Filter*, PassRefPtr<Image>, PassRefPtr<SVGPreserveAspectRatio>);
57 RefPtr<Image> m_image;
/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGImage.h17 DECLARE_SVG_INFO(Image);
/external/deqp/modules/egl/
H A DteglImageFormatTests.hpp33 namespace Image namespace in namespace:deqp::egl
57 } // Image
/external/skia/src/svg/
H A DSkSVGImage.h17 DECLARE_SVG_INFO(Image);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DBooleanObjectPropertyEditor.java19 import org.eclipse.swt.graphics.Image;
29 private static final Image m_nullImage = DesignerPlugin.getImage("properties/BooleanNull.png");
30 private static final Image m_trueImage = DesignerPlugin.getImage("properties/true.png");
31 private static final Image m_falseImage = DesignerPlugin.getImage("properties/false.png");
52 Image image = booleanValue ? m_trueImage : m_falseImage;
57 Image image = m_nullImage;
63 private void paint(GC gc, int x, int y, int width, int height, String text, Image image) {
H A DBooleanPropertyEditor.java14 import org.eclipse.swt.graphics.Image;
28 private static final Image m_trueImage = DesignerPlugin.getImage("properties/true.png");
29 private static final Image m_falseImage = DesignerPlugin.getImage("properties/false.png");
30 private static final Image m_unknownImage =
52 Image image = booleanValue ? m_trueImage : m_falseImage;
61 * Paints {@link Image} and text.
63 private void paint(GC gc, int x, int y, int width, int height, Image image, String text) {
/external/chromium_org/ui/gfx/image/
H A Dimage_family.cc21 const std::map<MapKey, gfx::Image>::const_iterator& other)
29 void ImageFamily::Add(const gfx::Image& image) {
41 Add(gfx::Image(image_skia));
44 const gfx::Image* ImageFamily::GetBest(int width, int height) const {
72 std::map<MapKey, gfx::Image>::const_iterator greater_or_equal =
84 std::map<MapKey, gfx::Image>::const_iterator less_than =
106 const gfx::Image* ImageFamily::GetBest(const gfx::Size& size) const {
110 const gfx::Image* ImageFamily::GetWithExactAspect(float aspect,
113 std::map<MapKey, gfx::Image>::const_iterator greater_or_equal =
122 std::map<MapKey, gfx::Image>
[all...]
H A Dimage_unittest.cc45 gfx::Image image;
52 gfx::Image imageCopy(image);
58 gfx::Image image2(gt::CreateImageSkia(25, 25));
72 // Test constructing a gfx::Image from an empty PlatformImage.
75 gfx::Image image1(NULL);
85 gfx::Image image2(image_skia);
92 gfx::Image image3(image_png_reps);
99 // The resulting Image should be empty when it is created using obviously
104 gfx::Image image1(image_png_reps1);
111 gfx::Image image
[all...]
H A Dimage_unittest_util.cc5 // Because the unit tests for gfx::Image are spread across multiple
73 gfx::Image CreateImage() {
77 gfx::Image CreateImage(int width, int height) {
78 return gfx::Image::CreateFrom1xBitmap(CreateBitmap(width, height));
81 bool IsEqual(const gfx::Image& img1, const gfx::Image& img2) {
137 void CheckImageIndicatesPNGDecodeFailure(const gfx::Image& image) {
172 bool IsEmpty(const gfx::Image& image) {
198 gfx::Image::RepresentationType GetPlatformRepresentationType() {
200 return gfx::Image
[all...]
/external/chromium_org/chrome/browser/ui/autofill/
H A Dmock_autofill_dialog_view_delegate.cc27 DefaultValue<gfx::Image>::Set(gfx::Image());
31 gfx::Image(),
33 gfx::Image()));
74 DefaultValue<gfx::Image>::Clear();
/external/chromium_org/chrome/browser/ui/website_settings/
H A Dwebsite_settings_ui.h27 class Image;
134 static const gfx::Image& GetPermissionIcon(const PermissionInfo& info);
140 static const gfx::Image& GetIdentityIcon(
148 static const gfx::Image& GetConnectionIcon(
155 static const gfx::Image& GetFirstVisitIcon(const base::string16& first_visit);
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DImageBitmap.h12 #include "platform/graphics/Image.h"
32 static PassRefPtrWillBeRawPtr<ImageBitmap> create(Image*, const IntRect&);
34 PassRefPtr<Image> bitmapImage() const;
46 virtual PassRefPtr<Image> getSourceImageForCanvas(SourceImageMode, SourceImageStatus*) const OVERRIDE;
59 ImageBitmap(Image*, const IntRect&);
68 RefPtr<Image> m_bitmap;
70 IntRect m_bitmapRect; // The rect where the underlying Image should be placed in reference to the ImageBitmap.
73 // The offset by which the desired Image is stored internally.
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderMediaControls.cpp40 typedef WTF::HashMap<const char*, Image*> MediaControlImageMap;
43 static Image* platformResource(const char* name)
47 if (Image* image = gMediaControlImageMap->get(name))
49 if (Image* image = Image::loadPlatformResource(name).leakRef()) {
63 static bool paintMediaButton(GraphicsContext* context, const IntRect& rect, Image* image)
75 static Image* soundLevel3 = platformResource("mediaplayerSoundLevel3");
76 static Image* soundLevel2 = platformResource("mediaplayerSoundLevel2");
77 static Image* soundLevel1 = platformResource("mediaplayerSoundLevel1");
78 static Image* soundLevel
[all...]
/external/chromium_org/chrome/test/ispy/common/
H A Dimage_tools.py9 from PIL import Image namespace
60 image_mask = Image.new('RGBA', image1.size, (0, 0, 0, 255))
63 image_diff = Image.new('RGBA', image1.size, (0, 0, 0, 255))
102 mask = Image.new('RGBA', images[0].size, (0, 0, 0, 255))
135 image = Image.new('RGBA', masks[0].size, black)
154 image = Image.new('RGBA', diff.size, black)
196 image: the RGBA PIL.Image mask to inflate.
200 A RGBA PIL.Image.
202 inflated = Image.new('RGBA', image.size)
256 image_mask = Image
[all...]
/external/chromium_org/tools/imagediff/
H A Dimage_diff.cc51 class Image { class
53 Image() : w_(0), h_(0) { function in class:Image
56 Image(const Image& image) function in class:Image
147 float PercentageDifferent(const Image& baseline, const Image& actual) {
181 float HistogramPercentageDifferent(const Image& baseline, const Image& actual) {
256 Image actual_image;
257 Image baseline_imag
[all...]
/external/chromium_org/ui/message_center/
H A Dnotification.h31 gfx::Image icon;
46 gfx::Image image;
47 gfx::Image small_image;
61 const gfx::Image& icon,
128 const gfx::Image& icon() const { return icon_; }
129 void set_icon(const gfx::Image& icon) { icon_ = icon; }
131 const gfx::Image& image() const { return optional_fields_.image; }
132 void set_image(const gfx::Image& image) { optional_fields_.image = image; }
134 const gfx::Image& small_image() const { return optional_fields_.small_image; }
135 void set_small_image(const gfx::Image
[all...]
/external/chromium_org/ash/frame/
H A Dframe_util.cc17 gfx::Image GetAvatarImageForContext(content::BrowserContext* context) {
34 return gfx::Image(result);
/external/chromium_org/chrome/browser/extensions/
H A Dbrowser_action_test_util.h17 class Image;
44 gfx::Image GetIcon(int index);
/external/chromium_org/chrome/browser/
H A Dicon_loader_auralinux.cc48 gfx::Image image = ui->GetIconForContentType(group_, size_pixels);
50 image_.reset(new gfx::Image(image));
H A Dimage_holder.h48 gfx::Image low_dpi_image() { return gfx::Image(image_); }
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_avatar_downloader.cc53 gfx::Image image = gfx::Image::CreateFrom1xBitmap(*bitmap);

Completed in 2219 milliseconds

1234567891011>>