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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
ImageObserver.h 31 class Image;
34 // Interface for notification about changes to an image, including decoding,
40 virtual void decodedSizeChanged(const Image*, int delta) = 0;
41 virtual void didDraw(const Image*) = 0;
43 virtual bool shouldPauseAnimation(const Image*) = 0;
44 virtual void animationAdvanced(const Image*) = 0;
46 virtual void changedInRect(const Image*, const IntRect&) = 0;
CrossfadeGeneratedImage.h 30 #include "core/platform/graphics/Image.h"
41 static PassRefPtr<CrossfadeGeneratedImage> create(Image* fromImage, Image* toImage, float percentage, IntSize crossfadeSize, const IntSize& size)
60 CrossfadeGeneratedImage(Image* fromImage, Image* toImage, float percentage, IntSize crossfadeSize, const IntSize&);
65 Image* m_fromImage;
66 Image* m_toImage;
Pattern.h 33 #include "core/platform/graphics/Image.h"
46 static PassRefPtr<Pattern> create(PassRefPtr<Image> tileImage, bool repeatX, bool repeatY)
52 Image* tileImage() const { return m_tileImage.get(); }
63 Pattern(PassRefPtr<Image>, bool repeatX, bool repeatY);
65 RefPtr<Image> m_tileImage;
  /external/chromium_org/printing/
image_android.cc 5 #include "printing/image.h"
9 bool Image::LoadMetafile(const Metafile& metafile) {
image_linux.cc 5 #include "printing/image.h"
9 bool Image::LoadMetafile(const Metafile& metafile) {
image.h 24 // Lightweight raw-bitmap management. The image, once initialized, is immutable.
25 // The main purpose is testing image contents.
26 class PRINTING_EXPORT Image {
28 // Creates the image from the given file on disk. Uses extension to
30 // If image loading fails size().IsEmpty() will be true.
31 explicit Image(const base::FilePath& path);
33 // Creates the image from the metafile. Deduces bounds based on bounds in
35 explicit Image(const Metafile& metafile);
38 explicit Image(const Image& image)
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_info_util.h 8 #include "ui/gfx/image/image.h"
16 // Returns a version of |image| of a specific size and with a grey border.
19 gfx::Image GetSizedAvatarIconWithBorder(const gfx::Image& image,
23 // Returns a version of |image| suitable for use in menus.
24 gfx::Image GetAvatarIconForMenu(const gfx::Image& image,
    [all...]
profile_info_util_unittest.cc 11 #include "ui/gfx/image/image_unittest_util.h"
17 const gfx::Image& profile_image(
19 gfx::Image result =
25 gfx::Image gaia_picture(gfx::test::CreateImage());
26 gfx::Image result2 =
34 const gfx::Image& profile_image(
36 gfx::Image result = profiles::GetAvatarIconForMenu(profile_image, false);
41 gfx::Image gaia_picture(gfx::test::CreateImage());
42 gfx::Image result2 = profiles::GetAvatarIconForMenu(gaia_picture, true);
49 const gfx::Image& profile_image
    [all...]
  /external/chromium_org/ui/gfx/image/
image_util.h 14 class Image;
19 // Creates an image from the given JPEG-encoded input. If there was an error
20 // creating the image, returns an IsEmpty() Image.
21 UI_EXPORT Image ImageFrom1xJPEGEncodedData(const unsigned char* input,
25 // the given image.
26 // Returns true if the image has a 1x representation and the 1x representation
29 // Returns true if the Image was encoded successfully.
30 UI_EXPORT bool JPEG1xEncodedDataFromImage(const Image& image,
    [all...]
image.h 5 // An Image wraps an image any flavor, be it platform-native GdkBitmap/NSImage,
6 // or a SkBitmap. This also provides easy conversion to other image types
11 // tied to the lifetime of the Image's internal storage. To allow Images to be
12 // cheaply passed around by value, the actual image data is stored in a ref-
17 // Attempting to use an empty Image will result in a crash.
56 class UI_EXPORT Image {
69 // Creates an empty image with no representations.
70 Image();
72 // Creates a new image by copying the raw PNG-encoded input for use as th
    [all...]
image_unittest_util.h 5 // Because the unit tests for gfx::Image are spread across multiple
12 #include "ui/gfx/image/image.h"
41 gfx::Image CreateImage();
42 gfx::Image CreateImage(int width, int height);
46 bool IsEqual(const gfx::Image& image1, const gfx::Image& image2);
53 // An image which was not successfully decoded to PNG should be a red bitmap.
55 void CheckImageIndicatesPNGDecodeFailure(const gfx::Image& image);
    [all...]
  /external/chromium_org/chrome/browser/ui/views/frame/
taskbar_decorator.h 11 class Image;
16 // Draws a scaled version of the avatar in |image| on the taskbar button
19 void DrawTaskbarDecoration(gfx::NativeWindow window, const gfx::Image* image);
taskbar_decorator.cc 9 void DrawTaskbarDecoration(gfx::NativeWindow window, const gfx::Image* image) {
  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_result_view_model.h 9 class Image;
23 // otherwise returns an empty gfx::Image.
24 virtual gfx::Image GetIconIfExtensionMatch(size_t index) const = 0;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IPageImageProvider.java 19 import org.eclipse.swt.graphics.Image;
28 * Returns an {@link Image} that the editor will display in the page's tab.
30 * @return An {@link Image} for the editor tab for this page. Null for no image.
32 Image getPageImage();
  /external/chromium_org/content/public/browser/
favicon_status.cc 8 #include "ui/gfx/image/image_skia.h"
13 image = gfx::Image(*GetContentClient()->browser()->GetDefaultFavicon());
favicon_status.h 9 #include "ui/gfx/image/image.h"
29 gfx::Image image; member in struct:content::FaviconStatus
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
ImageHeightmap.java 7 import com.jme3.texture.Image;
10 * A heightmap that is built off an image.
11 * If you want to be able to supply different Image types to
21 * Set the image to use for this heightmap
23 //public void setImage(Image image);
  /external/chromium_org/chrome/browser/ui/ash/launcher/
chrome_launcher_app_menu_item.cc 9 const gfx::Image* icon,
12 icon_(icon ? gfx::Image(*icon) : gfx::Image()),
chrome_launcher_app_menu_item.h 9 #include "ui/gfx/image/image.h"
17 const gfx::Image* icon,
26 const gfx::Image& icon() const { return icon_; }
44 const gfx::Image icon_;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
ImageImageDescriptor.java 14 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) {
32 m_Image = image;
  /frameworks/base/libs/hwui/
Image.h 34 class Image {
37 * Creates a new image from the specified graphic buffer. If the image
41 Image(sp<GraphicBuffer> buffer);
42 ~Image();
46 * from this image.
53 * Returns the name of the EGL image represented by this object.
62 }; // class Image
  /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/chrome/browser/managed_mode/
managed_user_theme.h 11 class Image;
22 virtual gfx::Image GetImageNamed(int id) OVERRIDE;
  /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;

Completed in 379 milliseconds

1 2 3 4 5 6 7 8 91011>>