/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
ImageObserver.h | 33 class Image; 36 // Interface for notification about changes to an image, including decoding, 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;
|
CrossfadeGeneratedImage.h | 31 #include "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;
|
/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...] |
/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 GFX_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 GFX_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 GFX_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 11 #include "ui/gfx/image/image.h" 40 gfx::Image CreateImage(); 41 gfx::Image CreateImage(int width, int height); 45 bool IsEqual(const gfx::Image& image1, const gfx::Image& image2); 52 // An image which was not successfully decoded to PNG should be a red bitmap. 54 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/download/ |
drag_download_item.h | 15 class Image; 19 // DownloadItem. If |icon| is NULL, no image will be accompany the drag. |view| 22 gfx::Image* icon,
|
/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/favicon/ |
favicon_util.h | 17 class Image; 31 // Sets the color space used for converting |image| to an NSImage to the 34 static void SetFaviconColorSpace(gfx::Image* image); 38 static gfx::Image SelectFaviconFramesFromPNGs(
|
/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/chromium_org/third_party/WebKit/Source/platform/ |
OverscrollTheme.h | 32 #include "platform/graphics/Image.h" 42 virtual PassRefPtr<Image> getOverhangImage(); 49 RefPtr<Image> m_overhangShadow; 50 RefPtr<Image> m_overhangPattern;
|
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/ |
screenlock_icon_provider.cc | 14 const gfx::Image& icon) { 18 gfx::Image ScreenlockIconProvider::GetIcon(const std::string& username) { 20 return gfx::Image();
|
screenlock_icon_provider.h | 11 #include "ui/gfx/image/image.h" 23 // Adds an icon image for |username| to be stored. 24 void AddIcon(const std::string& username, const gfx::Image& icon); 26 // Returns the icon image set for |username|. If no icon is found, then 27 // this function returns an empty image. 28 gfx::Image GetIcon(const std::string& username); 35 std::map<std::string, gfx::Image> user_icon_map_;
|
/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
|