Searched refs:Image (Results 1 - 25 of 863) sorted by relevance

1234567891011>>

/external/chromium_org/printing/
H A Dimage_android.cc9 bool Image::LoadMetafile(const Metafile& metafile) {
H A Dimage_linux.cc9 bool Image::LoadMetafile(const Metafile& metafile) {
H A Dimage.h26 class PRINTING_EXPORT Image { class in namespace:printing
31 explicit Image(const base::FilePath& path);
35 explicit Image(const Metafile& metafile);
38 explicit Image(const Image& image);
40 ~Image();
53 double PercentageDifferent(const Image& rhs) const;
74 Image(const void* data, size_t size);
96 Image& operator=(const Image
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageObserver.h33 class Image;
42 virtual void decodedSizeChanged(const Image*, int delta) = 0;
43 virtual void didDraw(const Image*) = 0;
45 virtual bool shouldPauseAnimation(const Image*) = 0;
46 virtual void animationAdvanced(const Image*) = 0;
48 virtual void changedInRect(const Image*, const IntRect&) = 0;
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DImage.cpp7 // Image.h: Implements the rx::Image class, an abstract base class for the
11 #include "libGLESv2/renderer/Image.h"
16 Image::Image() function in class:rx::Image
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dtaskbar_decorator.cc9 void DrawTaskbarDecoration(gfx::NativeWindow window, const gfx::Image* image) {
H A Dtaskbar_decorator.h11 class Image;
19 void DrawTaskbarDecoration(gfx::NativeWindow window, const gfx::Image* image);
/external/chromium_org/ash/frame/
H A Dframe_util.h15 class Image;
22 ASH_EXPORT gfx::Image GetAvatarImageForContext(
/external/chromium_org/chrome/browser/download/
H A Ddrag_download_item.h15 class Image;
22 gfx::Image* icon,
/external/chromium_org/components/enhanced_bookmarks/
H A Dimage_store_util.h14 // bytes. There is no API on gfx::Image capable of doing it while preserving the
19 scoped_refptr<base::RefCountedMemory> BytesForImage(const gfx::Image& image);
22 // returns a gfx::Image. If decoding fails, returns an empty image.
23 gfx::Image ImageForBytes(const scoped_refptr<base::RefCountedMemory>& data);
/external/chromium_org/content/public/browser/
H A Dfavicon_status.cc13 image = gfx::Image(*GetContentClient()->browser()->GetDefaultFavicon());
H A Dfavicon_status.h29 gfx::Image image;
/external/chromium_org/chrome/browser/ui/ash/launcher/
H A Dchrome_launcher_app_menu_item.cc9 const gfx::Image* icon,
12 icon_(icon ? gfx::Image(*icon) : gfx::Image()),
/external/chromium_org/components/favicon_base/
H A Dfavicon_util.h13 class Image;
29 void SetFaviconColorSpace(gfx::Image* image);
31 // Takes a vector of PNG-encoded frames, and converts it to a gfx::Image of
32 // size |favicon_size| in DIPS. The result gfx::Image has a gfx::ImageSkia with
34 gfx::Image SelectFaviconFramesFromPNGs(
/external/chromium_org/ui/gfx/image/
H A Dimage_util.h14 class Image;
21 // creating the image, returns an IsEmpty() Image.
22 GFX_EXPORT Image ImageFrom1xJPEGEncodedData(const unsigned char* input,
30 // Returns true if the Image was encoded successfully.
31 GFX_EXPORT bool JPEG1xEncodedDataFromImage(const Image& image,
H A Dimage_unittest_util.h5 // Because the unit tests for gfx::Image are spread across multiple
38 gfx::Image CreateImage();
39 gfx::Image CreateImage(int width, int height);
43 bool IsEqual(const gfx::Image& image1, const gfx::Image& image2);
52 void CheckImageIndicatesPNGDecodeFailure(const gfx::Image& image);
67 bool IsEmpty(const gfx::Image& image);
71 gfx::Image::RepresentationType GetPlatformRepresentationType();
73 PlatformImage ToPlatformType(const gfx::Image& image);
74 PlatformImage CopyPlatformType(const gfx::Image
[all...]
H A Dimage.h5 // An Image wraps an image any flavor, be it platform-native GdkBitmap/NSImage,
11 // tied to the lifetime of the Image's internal storage. To allow Images to be
17 // Attempting to use an empty Image will result in a crash.
52 class GFX_EXPORT Image { class in namespace:gfx
64 Image();
68 explicit Image(const std::vector<ImagePNGRep>& image_reps);
72 explicit Image(const ImageSkia& image);
76 explicit Image(UIImage* image);
81 explicit Image(NSImage* image);
84 // Initializes a new Image b
[all...]
H A Dimage_family.h25 // size, with high-DPI bitmap versions; use an Image or ImageSkia for that. Each
43 // Dereferencing this iterator returns a gfx::Image.
45 std::iterator<std::bidirectional_iterator_tag, const gfx::Image> {
83 const gfx::Image& operator*() const {
87 const gfx::Image* operator->() const {
95 const std::map<MapKey, gfx::Image>::const_iterator& other);
97 std::map<MapKey, gfx::Image>::const_iterator map_iterator_;
116 void Add(const gfx::Image& image);
128 const gfx::Image* GetBest(int width, int height) const;
137 const gfx::Image* GetBes
[all...]
H A Dimage.cc169 // An ImageRep is the object that holds the backing memory for an Image. Each
176 explicit ImageRep(Image::RepresentationType rep) : type_(rep) {}
183 CHECK_EQ(type_, Image::kImageRepPNG);
188 CHECK_EQ(type_, Image::kImageRepSkia);
194 CHECK_EQ(type_, Image::kImageRepCocoaTouch);
199 CHECK_EQ(type_, Image::kImageRepCocoa);
204 Image::RepresentationType type() const { return type_; }
211 Image::RepresentationType type_;
216 ImageRepPNG() : ImageRep(Image::kImageRepPNG) {
220 : ImageRep(Image
417 Image::Image() { function in class:gfx::Image
421 Image::Image(const std::vector<ImagePNGRep>& image_reps) { function in class:gfx::Image
437 Image::Image(const ImageSkia& image) { function in class:gfx::Image
447 Image::Image(UIImage* image) function in class:gfx::Image
455 Image::Image(NSImage* image) { function in class:gfx::Image
464 Image::Image(const Image& other) : storage_(other.storage_) { function in class:gfx::Image
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DOverscrollTheme.h32 #include "platform/graphics/Image.h"
42 virtual PassRefPtr<Image> getOverhangImage();
49 RefPtr<Image> m_overhangShadow;
50 RefPtr<Image> m_overhangPattern;
/external/chromium_org/tools/site_compare/operators/
H A Dequals.py7 from PIL import Image namespace
25 im1 = Image.open(file1)
26 im2 = Image.open(file2)
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
H A DImageImageDescriptor.java14 import org.eclipse.swt.graphics.Image;
18 * Implementation of {@link ImageDescriptor} for {@link Image} instance.
24 private final Image m_Image;
31 public ImageImageDescriptor(Image image) {
/external/chromium_org/chrome/browser/chromeos/profiles/
H A Davatar_menu_chromeos.cc15 gfx::Image* image,
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_avatar_icon_util.h17 class Image;
72 gfx::Image GetSizedAvatarIcon(const gfx::Image& image,
77 gfx::Image GetAvatarIconForMenu(const gfx::Image& image,
81 gfx::Image GetAvatarIconForWebUI(const gfx::Image& image,
86 gfx::Image GetAvatarIconForTitleBar(const gfx::Image& image,
/external/opencv/cvaux/src/
H A Dcvfindface.cpp48 CvSeq * cvFindFace(IplImage * Image,CvMemStorage* lpStorage) argument
52 FD.FindFace(Image);
56 }//cvFindFace(IplImage * Image)
58 CvSeq * cvPostBoostingFindFace(IplImage * Image,CvMemStorage* lpStorage) argument
62 FD.FindFace(Image);
67 }//cvPostBoostingFindFace(IplImage * Image)

Completed in 1130 milliseconds

1234567891011>>