/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) 27 void ImageFamily::Add(const gfx::Image& image) { 28 gfx::Size size = image.Size(); 30 map_[MapKey(1.0f, 0)] = image; 34 map_[MapKey(aspect, size.width())] = image; [all...] |
/external/chromium_org/chrome/browser/ui/website_settings/ |
website_settings_ui.h | 26 class Image; 122 static const gfx::Image& GetPermissionIcon(ContentSettingsType type, 129 static const gfx::Image& GetIdentityIcon( 137 static const gfx::Image& GetConnectionIcon( 144 static const gfx::Image& GetFirstVisitIcon(const string16& first_visit);
|
/external/chromium_org/third_party/WebKit/Source/core/loader/cache/ |
ImageResource.cpp | 46 : Resource(resourceRequest, Image) 54 ImageResource::ImageResource(WebCore::Image* image) 55 : Resource(ResourceRequest(), Image) 56 , m_image(image) 130 pair<WebCore::Image*, float> ImageResource::brokenImage(float deviceScaleFactor) const 133 DEFINE_STATIC_LOCAL(WebCore::Image*, brokenImageHiRes, (WebCore::Image::loadPlatformResource("missingImage@2x").leakRef())); 137 DEFINE_STATIC_LOCAL(WebCore::Image*, brokenImageLoRes, (WebCore::Image::loadPlatformResource("missingImage").leakRef())) 146 WebCore::Image* ImageResource::image() function in class:WebCore::ImageResource 178 WebCore::Image* image = m_svgImageCache->imageForRenderer(renderer); local 445 WebCore::Image* image = imageForRenderer(renderer); local [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/ |
ImageLoader.java | 35 import com.jme3.texture.Image; 43 * An image loader class. It uses three loaders (AWTLoader, TGALoader and DDSLoader) in an attempt to load the image from the given 51 protected DDSLoader ddsLoader = new DDSLoader(); // DirectX image loader 54 * This method loads the image from the blender file itself. It tries each loader to load the image. 59 * position in the stream where the image data starts 61 * if the image should be flipped (does not work with DirectX image) 62 * @return loaded image or null if it could not be loade [all...] |
/external/chromium_org/tools/imagediff/ |
image_diff.cc | 46 class Image { 48 Image() : w_(0), h_(0) { 51 Image(const Image& image) 52 : w_(image.w_), 53 h_(image.h_), 54 data_(image.data_) { 73 // Creates the image from stdin with the given data length. On success, it 91 // Creates the image from the given filename on disk, and returns true o [all...] |
/external/chromium_org/ui/views/corewm/ |
image_grid_unittest.cc | 8 #include "ui/gfx/image/image.h" 9 #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/third_party/WebKit/Source/core/rendering/ |
RenderMediaControlsChromium.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...] |
RenderImageResource.h | 31 #include "core/platform/graphics/Image.h" 58 virtual PassRefPtr<Image> image(int /* width */ = 0, int /* height */ = 0) const { return m_cachedImage ? m_cachedImage->imageForRenderer(m_renderer) : nullImage(); } function in class:WebCore::RenderImageResource 76 static Image* nullImage();
|
/external/chromium_org/ui/message_center/ |
notification.h | 14 #include "ui/gfx/image/image.h" 30 gfx::Image icon; 45 gfx::Image image; member in class:message_center::RichNotificationData 57 const gfx::Image& icon, 117 const gfx::Image& icon() const { return icon_; } 118 void set_icon(const gfx::Image& icon) { icon_ = icon; } 120 const gfx::Image& image() const { return optional_fields_.image; function in class:message_center::Notification [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/util/ |
SkyFactory.java | 12 import com.jme3.texture.Image; 13 import com.jme3.texture.Image.Format; 21 * be attached to the scene to display a sky image in the background. 41 * then the image is taken from it and is inserted into a TextureCubeMap</li> 63 * then the image is taken from it and is inserted into a TextureCubeMap</li> 87 Image img = texture.getImage(); 97 private static void checkImage(Image image) { 98 // if (image.getDepth() != 1) 101 if (image.getWidth() != image.getHeight()) 125 Image image = images[i]; local [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/chrome/browser/ |
icon_loader.h | 17 #include "ui/gfx/image.h" 51 virtual bool OnImageLoaded(IconLoader* source, gfx::Image* result) = 0; 78 scoped_ptr<gfx::Image> image_;
|
/external/chromium/chrome/browser/ui/tests/ |
ui_gfx_image_unittest.cc | 8 #include "ui/gfx/image.h" 25 gfx::Image image(gfx::test::CreatePlatformImage()); 32 image_view->SetImage(image); 46 gfx::Image image(gfx::test::CreateBitmap()); 47 GtkWidget* image_view = gtk_image_new_from_pixbuf(image);
|
/external/chromium_org/chrome/browser/extensions/ |
extension_icon_manager.h | 24 class Image; 48 const gfx::Image& image);
|
/external/chromium_org/chrome/browser/ |
icon_loader.h | 17 #include "ui/gfx/image/image.h" 47 // return the results of OnImageLoaded with the cached image. 52 // return true if it is taking ownership of the returned image. 54 gfx::Image* result, 95 scoped_ptr<gfx::Image> image_;
|
/external/chromium_org/chrome/browser/managed_mode/ |
managed_user_theme.cc | 10 #include "ui/gfx/image/image.h" 43 gfx::Image ManagedUserTheme::GetImageNamed(int id) { 45 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/ash/launcher/ |
browser_shortcut_launcher_item_controller.h | 15 class Image; 50 gfx::Image GetBrowserListIcon(content::WebContents* web_contents) const;
|
/external/chromium_org/chrome/browser/ui/global_error/ |
global_error.h | 18 class Image; 58 virtual gfx::Image GetBubbleViewIcon();
|
/external/chromium_org/chrome/browser/ui/ |
tab_modal_confirm_dialog_delegate.h | 20 class Image; 77 virtual gfx::Image* GetIcon();
|
/external/chromium_org/chrome/browser/ui/views/autofill/ |
decorated_textfield.h | 9 #include "ui/gfx/image/image.h" 36 void SetIcon(const gfx::Image& icon); 57 gfx::Image icon_;
|
/external/chromium_org/chrome/browser/ui/webui/ |
fileicon_source.h | 17 class Image; 62 gfx::Image* icon);
|