Searched defs:Image (Results 1 - 25 of 53) sorted by relevance

123

/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
H A DImage.h7 // Image.h: Defines the rx::Image class, an abstract base class for the
28 class Image class in namespace:rx
31 Image();
32 virtual ~Image() {};
67 DISALLOW_COPY_AND_ASSIGN(Image);
/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)
H A Dequals_with_mask.py7 from PIL import Image namespace
34 im1 = Image.open(file1)
35 im2 = Image.open(file2)
46 mask = Image.open(maskfile)
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfAlternateImageDictionary_autogen.cpp11 SkPdfStream* SkPdfAlternateImageDictionary::Image(SkPdfNativeDoc* doc) { function in class:SkPdfAlternateImageDictionary
12 SkPdfNativeObject* ret = get("Image", "");
20 return get("Image", "") != NULL;
/external/deqp/modules/egl/
H A DteglImageFormatTests.hpp33 namespace Image namespace in namespace:deqp::egl
57 } // 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)
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfAlternateImageDictionary_autogen.cpp11 SkPdfStream* SkPdfAlternateImageDictionary::Image(SkPdfNativeDoc* doc) { function in class:SkPdfAlternateImageDictionary
12 SkPdfNativeObject* ret = get("Image", "");
20 return get("Image", "") != NULL;
/external/chromium_org/printing/
H A Dimage.cc20 Image::Image(const base::FilePath& path) function in class:printing::Image
40 Image::Image(const Metafile& metafile) function in class:printing::Image
46 Image::Image(const Image& image) function in class:printing::Image
53 Image::~Image() {}
55 std::string Image
[all...]
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/chrome/test/ispy/common/
H A Dimage_tools.py9 from PIL import Image namespace
60 image_mask = Image.new('RGBA', image1.size, (0, 0, 0, 255))
63 image_diff = Image.new('RGBA', image1.size, (0, 0, 0, 255))
102 mask = Image.new('RGBA', images[0].size, (0, 0, 0, 255))
135 image = Image.new('RGBA', masks[0].size, black)
154 image = Image.new('RGBA', diff.size, black)
196 image: the RGBA PIL.Image mask to inflate.
200 A RGBA PIL.Image.
202 inflated = Image.new('RGBA', image.size)
256 image_mask = Image
[all...]
H A Dimage_tools_unittest.py8 from PIL import Image namespace
14 return Image.new('RGBA', size, color)
148 cross_image = Image.new('RGBA', (3, 3))
149 white_image = Image.new('RGBA', (3, 3))
150 dot_image = Image.new('RGBA', (3, 3))
H A Dispy_utils_unittest.py6 from PIL import Image namespace
22 self.white = Image.new('RGBA', (25, 25), (255, 255, 255, 255))
23 self.red = Image.new('RGBA', (25, 25), (255, 0, 0, 255))
24 self.black = Image.new('RGBA', (25, 25), (0, 0, 0, 255))
25 self.masked = Image.new('RGBA', (25, 25), (210, 0, 0, 255))
/external/chromium_org/chrome/test/ispy/
H A Dispy_api_unittest.py9 from PIL import Image namespace
22 self.white_img = Image.new('RGBA', (10, 10), (255, 255, 255, 255))
23 self.black_img = Image.new('RGBA', (10, 10), (0, 0, 0, 255))
H A Dispy_api.py9 from PIL import Image namespace
152 screenshot: a PIL.Image to compare.
/external/chromium_org/ui/gfx/image/
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.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/core/rendering/style/
H A DShapeValue.h47 Image enumerator in enum:blink::ShapeValue::ShapeValueType
79 ASSERT(type() == Image);
100 : m_type(Image)
128 case Image:
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImage.cpp28 #include "platform/graphics/Image.h"
49 Image::Image(ImageObserver* observer) function in class:blink::Image
54 Image::~Image()
58 Image* Image::nullImage()
61 DEFINE_STATIC_REF(Image, nullImage, (BitmapImage::create()));
65 PassRefPtr<Image> Image
[all...]
H A DBitmapImageTest.cpp50 virtual void decodedSizeChanged(const Image*, int delta) argument
54 virtual void didDraw(const Image*) OVERRIDE { }
55 virtual bool shouldPauseAnimation(const Image*) OVERRIDE { return false; }
56 virtual void animationAdvanced(const Image*) OVERRIDE { }
57 virtual void changedInRect(const Image*, const IntRect&) { } argument
109 PassRefPtr<Image> imageForDefaultFrame()
H A DImage.h56 class PLATFORM_EXPORT Image : public RefCounted<Image> { class in namespace:blink
63 virtual ~Image();
65 static PassRefPtr<Image> loadPlatformResource(const char* name);
76 static Image* nullImage();
118 virtual PassRefPtr<Image> imageForDefaultFrame();
129 Image(ImageObserver* = 0);
150 DEFINE_TYPE_CASTS(typeName, Image, image, image->is##typeName(), image.is##typeName())
/external/chromium_org/tools/site_compare/commands/
H A Dmaskmaker.py19 from PIL import Image namespace
146 mask = Image.open(mask_filename)
157 mask = Image.new("1", size, 1)
173 baseline = Image.open(os.path.join(mask_scrape_dir, mask_scrapes[0]))
193 scrape = Image.open(mask_scrape_filename)
/external/giflib/
H A Dgifalloc.c204 GifApplyTranslation(SavedImage *Image, GifPixelType Translation[]) argument
207 register int RasterSize = Image->ImageDesc.Height * Image->ImageDesc.Width;
210 Image->RasterBits[i] = Translation[Image->RasterBits[i]];
269 Image block allocation functions
304 * we want to free the last Image it's convenient to do it here.
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/
H A DSDL_nxvideo.h58 unsigned char * Image ; member in struct:SDL_PrivateVideoData
80 #define SDL_Image (this -> hidden -> Image)
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusBitmap.h29 Image::Image( function in class:Image
38 Image::Image( function in class:Image
46 inline Image*
47 Image::FromFile(
51 return new Image(filename);
54 inline Image*
55 Image::FromStream(
59 return new Image(strea
65 Image::Image( function in class:Image
88 Image::Image( function in class:Image
575 Image::Image(GpImage *nativeImage, Status status) function in class:Image
[all...]

Completed in 509 milliseconds

123