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

1 2 34 5 6 7 8 91011>>

  /external/skia/src/svg/
SkSVGImage.h 17 DECLARE_SVG_INFO(Image);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
BooleanObjectPropertyEditor.java 19 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; local
54 paint(gc, x, y, width, height, text, image);
57 Image image = m_nullImage; local
59 paint(gc, x, y, width, height, text, image);
    [all...]
BooleanPropertyEditor.java 14 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; local
54 paint(gc, x, y, width, height, image, text);
61 * Paints {@link Image} and text.
63 private void paint(GC gc, int x, int y, int width, int height, Image image, String text)
    [all...]
  /external/chromium_org/ui/gfx/image/
image_family.cc 5 #include "ui/gfx/image/image_family.h"
9 #include "ui/gfx/image/image.h"
10 #include "ui/gfx/image/image_skia.h"
21 const std::map<MapKey, gfx::Image>::const_iterator& other)
29 void ImageFamily::Add(const gfx::Image& image) {
30 gfx::Size size = image.Size();
32 map_[MapKey(1.0f, 0)] = image;
36 map_[MapKey(aspect, size.width())] = image;
    [all...]
image_unittest.cc 8 #include "ui/gfx/image/image.h"
9 #include "ui/gfx/image/image_png_rep.h"
10 #include "ui/gfx/image/image_skia.h"
11 #include "ui/gfx/image/image_unittest_util.h"
45 gfx::Image image; local
46 EXPECT_EQ(0U, image.RepresentationCount());
47 EXPECT_TRUE(image.IsEmpty());
48 EXPECT_EQ(0, image.Width())
118 gfx::Image image; local
161 gfx::Image image; local
668 gfx::Image image; local
    [all...]
image_unittest_util.cc 5 // Because the unit tests for gfx::Image are spread across multiple
8 #include "ui/gfx/image/image_unittest_util.h"
16 #include "ui/gfx/image/image_skia.h"
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) {
185 UIImage* image = local
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
mock_autofill_dialog_view_delegate.cc 27 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/
website_settings_ui.h 27 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/rendering/
RenderMediaControls.cpp 40 typedef WTF::HashMap<const char*, Image*> MediaControlImageMap;
43 static Image* platformResource(const char* name)
47 if (Image* image = gMediaControlImageMap->get(name))
48 return image;
49 if (Image* image = Image::loadPlatformResource(name).leakRef()) {
50 gMediaControlImageMap->set(name, image);
51 return image;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
BooleanXmlPropertyEditor.java 23 import org.eclipse.swt.graphics.Image;
39 private static final Image mTrueImage = DesignerPlugin.getImage("properties/true.png");
40 private static final Image mFalseImage = DesignerPlugin.getImage("properties/false.png");
41 private static final Image mNullImage =
43 private static final Image mUnknownImage =
56 Image image; local
58 image = mTrueImage;
60 image = mFalseImage;
62 image = mNullImage
    [all...]
  /external/chromium_org/tools/imagediff/
image_diff.cc 39 // Causes the app to output an image that visualizes the difference.
51 class Image {
53 Image() : w_(0), h_(0) {
56 Image(const Image& image)
57 : w_(image.w_),
58 h_(image.h_),
59 data_(image.data_) {
78 // Creates the image from stdin with the given data length. On success, i
    [all...]
  /external/chromium_org/ui/message_center/
notification.h 14 #include "ui/gfx/image/image.h"
31 gfx::Image icon;
46 gfx::Image image; member in class:message_center::RichNotificationData
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; function in class:message_center::Notification
    [all...]
  /external/chromium_org/ash/frame/
frame_util.cc 12 #include "ui/gfx/image/image_skia.h"
13 #include "ui/gfx/image/image_skia_operations.h"
17 gfx::Image GetAvatarImageForContext(content::BrowserContext* context) {
34 return gfx::Image(result);
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/
notification_manager.h 20 class Image;
58 const gfx::ImageSkia& image) OVERRIDE;
74 scoped_ptr<gfx::Image> extension_icon_;
  /external/chromium_org/chrome/browser/extensions/
browser_action_test_util.h 17 class Image;
44 gfx::Image GetIcon(int index);
extension_icon_manager.h 26 class Image;
51 const gfx::Image& image);
  /external/chromium_org/chrome/browser/
icon_loader_auralinux.cc 48 gfx::Image image = ui->GetIconForContentType(group_, size_pixels); local
49 if (!image.IsEmpty())
50 image_.reset(new gfx::Image(image));
image_holder.h 10 #include "ui/gfx/image/image.h"
11 #include "ui/gfx/image/image_skia.h"
48 gfx::Image low_dpi_image() { return gfx::Image(image_); }
  /external/chromium_org/chrome/browser/profiles/
profile_avatar_downloader.cc 52 // Decode the downloaded bitmap. Ownership of the image is taken by |cache_|.
53 gfx::Image image = gfx::Image::CreateFrom1xBitmap(*bitmap);
54 cache_->SaveAvatarImageAtPath(&image,
  /external/chromium_org/chrome/browser/supervised_user/
supervised_user_theme.cc 10 #include "ui/gfx/image/image.h"
68 gfx::Image SupervisedUserTheme::GetImageNamed(int id) {
70 return gfx::Image();
  /external/chromium_org/chrome/browser/themes/
custom_theme_supplier.h 22 class Image;
57 // Returns the theme image for |id|. Returns an empty image if no image is
59 virtual gfx::Image GetImageNamed(int id);
66 // Whether this theme provides an image for |id|.
  /external/chromium_org/chrome/browser/ui/
tab_modal_confirm_dialog_delegate.h 20 class Image;
78 virtual gfx::Image* GetIcon();
  /external/chromium_org/chrome/browser/ui/views/apps/app_info_dialog/
app_info_header_panel.h 18 class Image;
47 void OnAppImageLoaded(const gfx::Image& image);
  /external/chromium_org/chrome/browser/ui/webui/
fileicon_source.h 16 class Image;
61 gfx::Image* icon);
  /external/chromium_org/components/enhanced_bookmarks/
persistent_image_store.h 23 const gfx::Image& image) OVERRIDE;
25 virtual std::pair<gfx::Image, GURL> Get(const GURL& page_url) OVERRIDE;

Completed in 673 milliseconds

1 2 34 5 6 7 8 91011>>