/external/opencv/cvaux/src/ |
cvfindface.cpp | 48 CvSeq * cvFindFace(IplImage * Image,CvMemStorage* lpStorage) 52 FD.FindFace(Image); 56 }//cvFindFace(IplImage * Image) 58 CvSeq * cvPostBoostingFindFace(IplImage * Image,CvMemStorage* lpStorage) 62 FD.FindFace(Image); 67 }//cvPostBoostingFindFace(IplImage * Image)
|
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
ImageResource.h | 51 ImageResource(WebCore::Image*); 56 WebCore::Image* image(); // Returns the nullImage() if the image is not available yet. 57 WebCore::Image* imageForRenderer(const RenderObject*); // Returns the nullImage() if the image is not available yet. 59 bool currentFrameKnownToBeOpaque(const RenderObject*); // Side effect: ensures decoded image is in cache, therefore should only be called when about to draw the image. 61 static std::pair<WebCore::Image*, float> brokenImage(float deviceScaleFactor); // Returns an image and the image's resolution scale factor [all...] |
/external/chromium_org/chrome/browser/managed_mode/ |
managed_user_theme.h | 11 class Image; 22 virtual gfx::Image GetImageNamed(int id) OVERRIDE;
|
/external/chromium_org/ui/gfx/image/ |
image_util_unittest.cc | 5 #include "ui/gfx/image/image_util.h" 12 #include "ui/gfx/image/image_unittest_util.h" 15 gfx::Image original = gfx::test::CreateImage(100, 100); 20 gfx::Image decoded = 23 // JPEG is lossy, so simply check that the image decoded successfully.
|
image_family.h | 13 #include "ui/gfx/image/image.h" 22 // most appropriate image to fit in a given rectangle. 24 // NOTE: This is not appropriate for storing an image at a single logical pixel 25 // size, with high-DPI bitmap versions; use an Image or ImageSkia for that. Each 26 // image in an ImageFamily should have a different logical size (and may also 31 // A 0x0 image has aspect ratio 1.0. 0xN and Nx0 images are treated as 0x0. 43 // Dereferencing this iterator returns a gfx::Image. 45 std::iterator<std::bidirectional_iterator_tag, const gfx::Image> { 83 const gfx::Image& operator*() const [all...] |
image_util.cc | 5 #include "ui/gfx/image/image_util.h" 10 #include "ui/gfx/image/image.h" 11 #include "ui/gfx/image/image_skia.h" 17 Image ImageFrom1xJPEGEncodedData(const unsigned char* input, 21 return Image::CreateFrom1xBitmap(*bitmap); 23 return Image(); 26 bool JPEG1xEncodedDataFromImage(const Image& image, int quality, 29 image.AsImageSkia().GetRepresentation(1.0f) [all...] |
image.cc | 5 #include "ui/gfx/image/image.h" 13 #include "ui/gfx/image/image_png_rep.h" 14 #include "ui/gfx/image/image_skia.h" 27 #include "ui/gfx/image/cairo_cached_surface.h" 31 #include "ui/gfx/image/image_skia_util_ios.h" 34 #include "ui/gfx/image/image_skia_util_mac.h" 102 gchar* image = NULL; local 106 pixbuf, &image, &image_size, "png", &error, NULL)); 109 png_bytes->data().assign(image, image + image_size) 321 ImageSkia* image() { return image_.get(); } function in class:gfx::internal::ImageRepSkia 426 UIImage* image() const { return image_; } function in class:gfx::internal::ImageRepCocoaTouch 459 NSImage* image() const { return image_; } function in class:gfx::internal::ImageRepCocoa 717 UIImage* image = UIImageFromImageSkia(*skia_rep->image()); local 748 NSImage* image = NSImageFromImageSkiaWithColorSpace(*skia_rep->image(), local 874 UIImage* image = ToUIImage(); local 880 NSImage* image = ToNSImage(); local [all...] |
/frameworks/base/media/java/android/media/ |
Image.java | 23 * <p>A single complete image buffer to use with a media source such as a 27 * data of the Image through one or more 38 * from various media sources, not closing old Image objects will prevent the 40 * {@link ImageReader#getMaxImages the maximum outstanding image count} is 46 public abstract class Image implements AutoCloseable { 50 protected Image() { 54 * Get the format for this image. This format determines the number of 55 * ByteBuffers needed to represent the image, and the general layout of the 92 * The width of the image in pixels. For formats where some color channels 98 * The height of the image in pixels. For formats where some color channel [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSImageGeneratorValue.h | 37 class Image; 60 PassRefPtr<Image> image(RenderObject*, const IntSize&); 73 Image* getImage(RenderObject*, const IntSize&); 74 void putImage(const IntSize&, PassRefPtr<Image>); 77 HashCountedSet<IntSize> m_sizes; // A count of how many times a given image size is in use. 78 RenderObjectSizeCountMap m_clients; // A map from RenderObjects (with entry count) to image sizes. 79 HashMap<IntSize, RefPtr<Image> > m_images; // A cache of Image objects by image size [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
CanvasPattern.h | 38 class Image; 44 static PassRefPtr<CanvasPattern> create(PassRefPtr<Image> image, bool repeatX, bool repeatY, bool originClean) 46 return adoptRef(new CanvasPattern(image, repeatX, repeatY, originClean)); 54 CanvasPattern(PassRefPtr<Image>, bool repeatX, bool repeatY, bool originClean);
|
/external/chromium_org/tools/site_compare/operators/ |
equals.py | 7 from PIL import Image 15 file1: path to first image to compare 16 file2: path to second image to compare 21 A tuple of (errorstring, image) if they're not 25 im1 = Image.open(file1) 26 im2 = Image.open(file2)
|
/external/jmonkeyengine/engine/src/android/com/jme3/texture/plugins/ |
AndroidImageLoader.java | 7 import com.jme3.texture.Image; 16 Image image = new Image(imageInfo.getFormat(), bitmap.getWidth(), bitmap.getHeight(), null); local 17 image.setEfficentData(imageInfo); 18 return image;
|
/external/chromium_org/chrome/browser/profiles/ |
profile_info_util_unittest.cc | 12 #include "ui/gfx/image/image_skia.h" 13 #include "ui/gfx/image/image_skia_rep.h" 14 #include "ui/gfx/image/image_unittest_util.h" 18 // Helper function to check that the image is sized properly 20 void VerifyScaling(gfx::Image& image, gfx::Size& size) { 25 ASSERT_FALSE(gfx::test::IsEmpty(image)); 26 EXPECT_EQ(image.Size(), size); 28 gfx::ImageSkia image_skia = *image.ToImageSkia(); 30 EXPECT_TRUE(image.ToImageSkia()->HasRepresentation(1.0f)) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/ |
SVGFEImage.h | 33 class Image; 38 static PassRefPtr<FEImage> createWithImage(Filter*, PassRefPtr<Image>, const SVGPreserveAspectRatio&); 50 FEImage(Filter*, PassRefPtr<Image>, const SVGPreserveAspectRatio&); 56 RefPtr<Image> m_image;
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
GeneratedImage.cpp | 41 Image::computeIntrinsicDimensions(intrinsicWidth, intrinsicHeight, intrinsicRatio);
|
Image.cpp | 28 #include "platform/graphics/Image.h" 49 Image::Image(ImageObserver* observer) 54 Image::~Image() 58 Image* Image::nullImage() 61 DEFINE_STATIC_REF(Image, nullImage, (BitmapImage::create())); 65 PassRefPtr<Image> Image::loadPlatformResource(const char *name [all...] |
/frameworks/base/libs/hwui/ |
Image.cpp | 22 #include "Image.h" 27 Image::Image(sp<GraphicBuffer> buffer) { 37 ALOGW("Error creating image (%#x)", eglGetError()); 47 ALOGW("Error creating image (%#x)", status); 52 Image::~Image() {
|
/external/chromium/chrome/browser/ui/webui/ |
fileicon_source.h | 18 class Image; 38 gfx::Image* icon);
|
/external/chromium_org/chrome/browser/ui/ |
confirm_bubble_model.h | 12 class Image; 35 // Returns an icon for the bubble. This image should be owned by the 38 virtual gfx::Image* GetIcon() const = 0;
|
/external/chromium_org/chrome/browser/ui/gtk/download/ |
download_item_drag.h | 20 DownloadItemDrag(const content::DownloadItem* item, gfx::Image* icon); 27 gfx::Image* icon);
|
/external/chromium_org/chrome/browser/ui/gtk/ |
nine_box.h | 11 class Image; 15 // non-corner images can be tiled to make a larger image. It's used to 16 // use bitmaps for constructing image-based resizable widgets like buttons. 18 // If you want just a vertical image that stretches in height but is fixed 20 // Similarly, for a horizontal image that stretches in width but is fixed in 25 // ids that will be passed to the resource bundle. Use 0 for no image. 29 // Construct a NineBox from a single image and insets indicating the sizes 31 NineBox(int image, int top_margin, int bottom_margin, int left_margin, 50 gfx::Image* images_[9];
|
/external/chromium_org/printing/ |
image.cc | 5 #include "printing/image.h" 20 Image::Image(const base::FilePath& path) 40 Image::Image(const Metafile& metafile) 46 Image::Image(const Image& image) 47 : size_(image.size_) [all...] |
/external/chromium_org/ui/views/corewm/ |
image_grid.h | 18 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, 117 const gfx::Image* right_image [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderInputSpeech.cpp | 85 DEFINE_STATIC_REF(Image, imageStateNormal, (Image::loadPlatformResource("inputSpeech"))); 86 DEFINE_STATIC_REF(Image, imageStateRecording, (Image::loadPlatformResource("inputSpeechRecording"))); 87 DEFINE_STATIC_REF(Image, imageStateWaiting, (Image::loadPlatformResource("inputSpeechWaiting"))); 90 Image* image = imageStateNormal; local 92 image = imageStateRecording; 94 image = imageStateWaiting [all...] |
/external/chromium_org/chrome/browser/ |
icon_manager.h | 53 #include "ui/gfx/image/image.h" 65 gfx::Image* LookupIconFromFilepath(const base::FilePath& file_name, 68 typedef base::Callback<void(gfx::Image*)> IconRequestCallback; 78 // 3. The gfx::Image pointer passed to the callback may be NULL if decoding 89 gfx::Image* result, 103 gfx::Image* LookupIconFromGroup(const IconGroupID& group, 106 typedef std::map<CacheKey, gfx::Image*> IconMap;
|