HomeSort by relevance Sort by last modified time
    Searched refs:Image (Results 51 - 75 of 979) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/gtk/
avatar_menu_button_gtk.h 19 class Image;
38 // Sets the image to display on the button, typically the profile icon.
39 void SetIcon(const gfx::Image& icon, bool is_gaia_picture);
55 // A weak pointer to the image widget displayed on the button.
64 scoped_ptr<gfx::Image> icon_;
custom_drag.h 24 class Image;
30 CustomDrag(gfx::Image* icon, int code_mask, GdkDragAction action);
54 // The image for the drag. The lifetime of the image should be managed outside
56 gfx::Image* image_;
69 gfx::Image* icon);
73 static void BeginDrag(const content::DownloadItem* item, gfx::Image* icon);
78 DownloadItemDrag(const content::DownloadItem* item, gfx::Image* icon);
  /external/chromium_org/chrome/browser/ui/views/
avatar_menu_button.h 17 class Image;
39 virtual void SetAvatarIcon(const gfx::Image& icon, bool is_gaia_picture);
52 // Use a scoped ptr because gfx::Image doesn't have a default constructor.
53 scoped_ptr<gfx::Image> icon_;
  /external/chromium_org/third_party/WebKit/public/platform/
WebImage.h 40 namespace WebCore { class Image; }
55 WebImage(const WebImage& image)
58 assign(image);
61 WebImage& operator=(const WebImage& image)
63 assign(image);
67 // Decodes the given image data. If the image has multiple frames,
72 // Returns a list of all frames in the image. Only the first frame at each pixel
83 WebImage(const WTF::PassRefPtr<WebCore::Image>&);
84 WebImage& operator=(const WTF::PassRefPtr<WebCore::Image>&)
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
custom_drag.h 20 class Image;
26 explicit CustomDrag(gfx::Image* icon, int code_mask, GdkDragAction action);
50 // The image for the drag. The lifetime of the image should be managed outside
52 gfx::Image* image_;
65 gfx::Image* icon);
69 static void BeginDrag(const DownloadItem* item, gfx::Image* icon);
72 DownloadItemDrag(const DownloadItem* item, gfx::Image* icon);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
Image.h 51 // This class gets notified when an image creates or destroys decoded frames and when it advances animation frames.
54 class Image : public RefCounted<Image> {
61 virtual ~Image();
63 static PassRefPtr<Image> loadPlatformResource(const char* name);
71 // the image contains only resources from its own security origin.
74 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/jmonkeyengine/engine/src/android/com/jme3/asset/
AndroidImageInfo.java 6 import com.jme3.texture.Image;
7 import com.jme3.texture.Image.Format;
12 * <code>AndroidImageInfo</code> is set in a jME3 image via the {@link Image#setEfficientData(java.lang.Object)}
37 throw new AssetLoadException("Failed to load image " + assetInfo.getKey(), ex);
51 * or creating the image object.
59 throw new IOException("Failed to load image: " + assetInfo.getKey().getName());
69 format = Image.Format.Alpha8;
72 format = Image.Format.ARGB4444;
75 format = Image.Format.RGBA8
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/download/
download_item_mac.h 22 class Image;
50 gfx::Image* icon_bitmap);
  /external/chromium_org/chrome/browser/download/
download_util.h 35 class Image;
53 // DownloadItem. If |icon| is NULL, no image will be accompany the drag. |view|
56 gfx::Image* icon,
  /external/chromium_org/chrome/browser/extensions/
browser_action_test_util.h 16 class Image;
42 gfx::Image GetIcon(int index);
image_loader.h 22 class Image;
30 // calling a callback when an image is loaded.
36 // Information about a singe image representation to load from an extension
57 // When |resize_method| is ALWAYS_RESIZE or when the loaded image is larger
74 // Checks whether image is a component extension resource. Returns false
75 // if a given |resource| does not have a corresponding image in bundled
83 // Specify image resource to load. If the loaded image is larger than
86 // if the image was found in the cache.
92 const base::Callback<void(const gfx::Image&)>& callback)
    [all...]
  /external/chromium_org/chrome/browser/themes/
custom_theme_supplier.cc 9 #include "ui/gfx/image/image.h"
32 gfx::Image CustomThemeSupplier::GetImageNamed(int id) {
33 return gfx::Image();
  /external/chromium_org/chrome/browser/ui/cocoa/download/
download_item_mac.h 19 class Image;
46 void OnExtractIconComplete(gfx::Image* icon_bitmap);
  /external/chromium_org/third_party/WebKit/Source/core/platform/
DragImage.h 37 class Image;
42 static PassOwnPtr<DragImage> create(Image*, RespectImageOrientationEnum = DoNotRespectImageOrientation);
  /external/chromium_org/ui/linux_ui/
linux_ui.h 17 class Image;
47 // Returns an themed image per theme_provider.h
49 virtual gfx::Image GetThemeImageNamed(int id) const = 0;
71 const gfx::ImageSkia& image,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 32 import org.eclipse.swt.graphics.Image;
60 private Map<String, Image> mIconMap = Maps.newHashMap();
61 private Map<URL, Image> mUrlMap = Maps.newHashMap();
63 private Map<Image, Image> mErrorIcons;
64 private Map<Image, Image> mWarningIcons;
78 for (Image icon : mIconMap.values()) {
85 for (Image icon : mUrlMap.values()) {
93 for (Image icon : mErrorIcons.values())
267 Image image = mUrlMap.get(url); local
356 Image image = new Image(display, SX, SY); local
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_info_util.cc 17 gfx::Image GetSizedAvatarIconWithBorder(const gfx::Image& image,
21 return image;
25 *image.ToSkBitmap(), skia::ImageOperations::RESIZE_BEST, length, length);
37 return gfx::Image(gfx::ImageSkia(canvas.ExtractImageRep()));
40 gfx::Image GetAvatarIconForMenu(const gfx::Image& image,
43 image, is_gaia_picture, kAvatarIconWidth, kAvatarIconHeight)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
FlagManager.java 27 import org.eclipse.swt.graphics.Image;
65 private Map<String, Image> mImageMap = Maps.newHashMap();
72 public static Image getEmptyIcon() {
81 public static Image getGlobeIcon() {
95 public Image getFlag(@Nullable String language, @Nullable String region) {
107 Image flag = getFlag(locale.getCountry());
142 public Image getFlag(LanguageQualifier language, RegionQualifier region) {
162 public Image getFlagForFolderName(@NonNull String folder) {
189 public Image getFlag(@NonNull String region) {
197 private Image getIcon(@NonNull String base)
    [all...]
  /external/chromium_org/ui/gfx/image/
image_unittest.cc 9 #include "ui/gfx/image/image.h"
10 #include "ui/gfx/image/image_png_rep.h"
11 #include "ui/gfx/image/image_skia.h"
12 #include "ui/gfx/image/image_unittest_util.h"
40 gfx::Image image; local
41 EXPECT_EQ(0U, image.RepresentationCount());
42 EXPECT_TRUE(image.IsEmpty());
43 EXPECT_EQ(0, image.Width())
113 gfx::Image image; local
156 gfx::Image image; local
677 gfx::Image image; local
    [all...]
  /external/chromium/chrome/browser/
icon_manager.h 55 #include "ui/gfx/image.h"
70 gfx::Image* LookupIcon(const FilePath& file_name,
74 typedef Callback2<Handle, gfx::Image*>::Type IconRequestCallback;
88 virtual bool OnImageLoaded(IconLoader* source, gfx::Image* result);
105 typedef std::map<CacheKey, gfx::Image*> IconMap;
  /external/chromium_org/chrome/browser/thumbnails/
thumbnail_service.h 10 #include "ui/gfx/image/image.h"
31 const gfx::Image& thumbnail) = 0;
36 // instances is limited to the act of processing a single tab image. They
  /external/chromium_org/chrome/browser/ui/ash/launcher/
chrome_launcher_app_menu_item_tab.h 26 const gfx::Image* icon,
  /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 28 gfx::Image& ResourceBundle::GetNativeImageNamed(int resource_id, ImageRTL rtl) {
29 // Flipped image is not used on Android.

Completed in 662 milliseconds

1 23 4 5 6 7 8 91011>>