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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/src/svg/
SkSVGImage.h 17 DECLARE_SVG_INFO(Image);
  /external/chromium_org/tools/site_compare/operators/
equals_with_mask.py 7 from PIL import Image
21 file1: path to first image to compare
22 file2: path to second image to compare
27 A tuple of (errorstring, image) if they're not
34 im1 = Image.open(file1)
35 im2 = Image.open(file2)
46 mask = Image.open(maskfile)
  /external/chromium_org/ui/base/resource/
resource_bundle_android.cc 26 gfx::Image& ResourceBundle::GetNativeImageNamed(int resource_id, ImageRTL rtl) {
27 // Flipped image is not used on Android.
  /external/skia/src/svg/
SkSVGImage.h 17 DECLARE_SVG_INFO(Image);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Image.h 52 // This class gets notified when an image creates or destroys decoded frames and when it advances animation frames.
55 class PLATFORM_EXPORT Image : public RefCounted<Image> {
62 virtual ~Image();
64 static PassRefPtr<Image> loadPlatformResource(const char* name);
72 // image frame contains only resources from its own security origin.
75 static Image* nullImage();
99 // Animation begins whenever someone draws the image, so startAnimation() is not normally called.
100 // It will automatically pause once all observers no longer want to render the image anywhere.
122 Image(ImageObserver* = 0)
    [all...]
  /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...]
  /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 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 base::string16& first_visit);
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ImageResource.cpp 47 : Resource(resourceRequest, Image)
57 ImageResource::ImageResource(WebCore::Image* image)
58 : Resource(ResourceRequest(""), Image)
59 , m_image(image)
133 pair<WebCore::Image*, float> ImageResource::brokenImage(float deviceScaleFactor)
136 DEFINE_STATIC_REF(WebCore::Image, brokenImageHiRes, (WebCore::Image::loadPlatformResource("missingImage@2x")));
140 DEFINE_STATIC_REF(WebCore::Image, brokenImageLoRes, (WebCore::Image::loadPlatformResource("missingImage")))
149 WebCore::Image* ImageResource::image() function in class:WebCore::ImageResource
181 WebCore::Image* image = m_svgImageCache->imageForRenderer(renderer); local
457 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/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/
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...]
  /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_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/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 26 class Image;
51 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"
62 gfx::Image ManagedUserTheme::GetImageNamed(int id) {
64 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/tabs/
tab_utils.h 17 class Image;
66 // Returns a cached image, to be shown by the media indicator for the given
68 const gfx::Image& GetTabMediaIndicatorImage(TabMediaState media_state);

Completed in 681 milliseconds

1 2 34 5 6 7 8 91011>>