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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/extensions/
extension_uninstall_dialog.h 11 #include "ui/gfx/image/image_skia.h"
21 class Image;
86 // image, then we use a default icon instead.
87 void SetIcon(const gfx::Image& image);
89 void OnImageLoaded(const std::string& extension_id, const gfx::Image& image);
  /external/chromium_org/chrome/browser/ui/views/profiles/
avatar_menu_button.h 18 class Image;
44 // Sets the image for the avatar button. Rectangular images, as opposed
46 virtual void SetAvatarIcon(const gfx::Image& icon, bool is_rectangle);
66 // Use a scoped ptr because gfx::Image doesn't have a default constructor.
67 scoped_ptr<gfx::Image> icon_;
  /external/chromium_org/components/enhanced_bookmarks/
test_image_store.h 19 const gfx::Image& image) OVERRIDE;
21 virtual std::pair<gfx::Image, GURL> Get(const GURL& page_url) OVERRIDE;
31 typedef std::map<const GURL, std::pair<gfx::Image, const GURL> > ImageMap;
image_store.h 12 #include "ui/gfx/image/image.h"
16 // The ImageStore keeps an image for each URL. This class is not thread safe,
23 // Returns true if there is an image for this url.
26 // Inserts an image and its url in the store for the the given page url. The
27 // image can be null indicating that the download of the image at this URL or
28 // encoding for insertion failed previously. On non-ios platforms, |image|
32 const gfx::Image& image) = 0
    [all...]
image_store_util.cc 7 #include "ui/gfx/image/image_skia.h"
8 #include "ui/gfx/image/image_util.h"
16 scoped_refptr<base::RefCountedMemory> BytesForImage(const gfx::Image& image) {
17 DCHECK(image.AsImageSkia().image_reps().size() == 1);
18 DCHECK(image.AsImageSkia().image_reps().begin()->scale() == 1.0f);
22 gfx::JPEG1xEncodedDataFromImage(image, kJpegEncodingQuality, &data);
30 gfx::Image ImageForBytes(const scoped_refptr<base::RefCountedMemory>& bytes) {
image_store_unittest.cc 18 gfx::Image CreateImage(int width, int height, int a, int r, int g, int b) {
22 gfx::Image image(gfx::Image::CreateFrom1xBitmap(bitmap));
25 // Make sure the image has a kImageRepCocoaTouch.
26 image.ToUIImage();
29 return image;
32 gfx::Image GenerateWhiteImage() {
36 gfx::Image GenerateBlackImage(int width, int height) {
40 gfx::Image GenerateBlackImage()
    [all...]
image_store.cc 21 std::pair<gfx::Image, GURL> image_info = Get(from);
  /external/chromium_org/third_party/WebKit/Source/platform/
OverscrollTheme.cpp 36 m_overhangShadow = Image::loadPlatformResource("overhangShadow");
37 m_overhangPattern = Image::loadPlatformResource("overhangPattern");
41 PassRefPtr<Image> OverscrollTheme::getOverhangImage()
DragImage.h 37 class Image;
42 static PassOwnPtr<DragImage> create(Image*, RespectImageOrientationEnum = DoNotRespectImageOrientation, float deviceScaleFactor = 1);
  /external/chromium_org/third_party/WebKit/public/platform/
WebImage.h 45 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 BLINK_PLATFORM_EXPORT WebImage(const WTF::PassRefPtr<Image>&);
84 BLINK_PLATFORM_EXPORT WebImage& operator=(const WTF::PassRefPtr<Image>&)
    [all...]
  /external/chromium_org/chrome/browser/profiles/
avatar_menu_desktop.cc 16 gfx::Image* image,
26 // If there is a Gaia image available, try to use that.
28 const gfx::Image* gaia_image = cache.GetGAIAPictureOfProfileAtIndex(index);
30 *image = *gaia_image;
40 *image = ResourceBundle::GetSharedInstance().GetNativeImageNamed(resource_id);
  /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/clipboard/
Pasteboard.h 38 class Image;
51 void writeImage(Image*, const KURL&, const String& title);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Image.h 53 // This class gets notified when an image creates or destroys decoded frames and when it advances animation frames.
56 class PLATFORM_EXPORT Image : public RefCounted<Image> {
63 virtual ~Image();
65 static PassRefPtr<Image> loadPlatformResource(const char* name);
73 // image frame contains only resources from its own security origin.
76 static Image* nullImage();
100 // Animation begins whenever someone draws the image, so startAnimation() is not normally called.
101 // It will automatically pause once all observers no longer want to render the image anywhere.
107 // True if this image can potentially animate
    [all...]
Pattern.h 34 #include "platform/graphics/Image.h"
53 static PassRefPtr<Pattern> createBitmapPattern(PassRefPtr<Image> tileImage,
62 Pattern(PassRefPtr<Image>, RepeatMode);
  /frameworks/base/media/java/android/media/
Image.java 25 * <p>A single complete image buffer to use with a media source such as a
30 * data of the Image through one or more
41 * from various media sources, not closing old Image objects will prevent the
43 * {@link ImageReader#getMaxImages the maximum outstanding image count} is
49 public abstract class Image implements AutoCloseable {
53 protected Image() {
57 * Get the format for this image. This format determines the number of
58 * ByteBuffers needed to represent the image, and the general layout of the
91 * <td>A single plane of raw sensor image data, with 16 bits per color
104 * The width of the image in pixels. For formats where some color channel
    [all...]
  /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/ui/wm/core/
image_grid.h 13 #include "ui/gfx/image/image_skia.h"
19 class Image;
24 // An ImageGrid is a 3x3 array of ui::Layers, each containing an image.
30 // - the center image is scaled in both directions
46 // below example, the top-left corner image is overlaid on top of the window's
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
    [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/chrome/browser/ui/ash/launcher/
chrome_launcher_app_menu_item_tab.h 26 const gfx::Image* icon,
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
Image.h 7 // Image.h: Defines the rx::Image class, an abstract base class for the
28 class Image
31 Image();
32 virtual ~Image() {};
67 DISALLOW_COPY_AND_ASSIGN(Image);
  /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/deqp/modules/egl/
teglImageFormatTests.hpp 23 * \brief EGL image tests.
33 namespace Image
57 } // Image

Completed in 4059 milliseconds

1 23 4 5 6 7 8 91011>>