/external/chromium_org/content/browser/web_contents/aura/ |
image_window_delegate.h | 9 #include "ui/gfx/image/image.h" 14 // An ImageWindowDelegate paints an image for a Window. The delegate destroys 20 void SetImage(const gfx::Image& image); 48 gfx::Image image_; 51 // Keeps track of whether the window size matches the image size or not. If 52 // the image size is smaller than the window size, then the delegate paints a
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSCrossfadeValue.h | 34 #include "core/platform/graphics/Image.h" 55 PassRefPtr<Image> image(RenderObject*, const IntSize&); 102 RefPtr<Image> m_generatedImage;
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
ImageBitmap.h | 10 #include "core/platform/graphics/Image.h" 31 PassRefPtr<Image> bitmapImage() const; 55 // the image source changes. 57 RefPtr<Image> m_bitmap; 60 IntRect m_bitmapRect; // The rect where the underlying Image should be placed in reference to the ImageBitmap. 63 // The offset by which the desired Image is stored internally. 65 // ImageBitmaps not constructed from HTMLImageElements always pre-crop and store the image at (0, 0).
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderImageResource.cpp | 32 #include "core/platform/graphics/Image.h" 88 image()->resetAnimation(); 101 Image* RenderImageResource::nullImage() 103 return Image::nullImage();
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
ShapeValue.h | 45 Image 58 static PassRefPtr<ShapeValue> createImageValue(PassRefPtr<StyleImage> image) 60 return adoptRef(new ShapeValue(image)); 65 StyleImage* image() const { return m_image.get(); } function in class:WebCore::ShapeValue 66 void setImage(PassRefPtr<StyleImage> image) 68 if (m_image != image) 69 m_image = image; 83 ShapeValue(PassRefPtr<StyleImage> image) 84 : m_type(Image) 85 , m_image(image) [all...] |
/external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/ |
Image11.h | 13 #include "libGLESv2/renderer/Image.h" 29 class Image11 : public Image 35 static Image11 *makeImage11(Image *img);
|
/external/chromium_org/third_party/lcov/contrib/galaxy/ |
posterize.pl | 39 my $Image = "../lgp/image.ps"; 288 # Find the bounds for the image 290 $Bounds = `tail -1 $Image`; 305 # Paste in actual image. 306 print POSTER `cat /home/lgp/image.ps`;
|
/external/chromium_org/third_party/lcov-1.9/contrib/galaxy/ |
posterize.pl | 39 my $Image = "../lgp/image.ps"; 288 # Find the bounds for the image 290 $Bounds = `tail -1 $Image`; 305 # Paste in actual image. 306 print POSTER `cat /home/lgp/image.ps`;
|
/external/chromium_org/ui/base/models/ |
menu_model.h | 12 #include "ui/gfx/image/image_skia.h" 17 class Image; 92 virtual bool GetIconAt(int index, gfx::Image* icon) = 0;
|
/external/chromium_org/ui/base/resource/ |
resource_bundle.h | 24 #include "ui/gfx/image/image.h" 86 // Return an image resource or an empty value to attempt retrieval of the 88 virtual gfx::Image GetImageNamed(int resource_id) = 0; 90 // Return an image resource or an empty value to attempt retrieval of the 92 virtual gfx::Image GetNativeImageNamed(int resource_id, ImageRTL rtl) = 0; 177 // image resources. |locale_resources_data_| is protected by a lock for the 182 // Gets image with the specified resource_id from the current module data. 187 // NOTE: GetNativeImageNamed is preferred for cross-platform gfx::Image use. 190 // Gets an image resource from the current module data. This will load th [all...] |
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/ |
RenderImageJme.java | 36 import com.jme3.texture.Image; 45 private Image image; field in class:RenderImageJme 59 image = texture.getImage(); 61 width = image.getWidth(); 62 height = image.getHeight(); 70 this.image = texture.getImage(); 71 width = image.getWidth(); 72 height = image.getHeight();
|
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/ |
SDL_nxvideo.h | 58 unsigned char * Image ; 80 #define SDL_Image (this -> hidden -> Image)
|
/pdk/apps/CameraITS/tests/ |
test_formats.py | 15 import its.image namespace 19 import Image 23 """Test that the reported sizes and formats for image capture work. 45 img = Image.open(fname)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/ |
AttributeDescriptor.java | 25 import org.eclipse.swt.graphics.Image; 105 public Image getGenericIcon() {
|
AttributeDescriptorLabelProvider.java | 24 import org.eclipse.swt.graphics.Image; 39 public Image getImage(Object element) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
AddPrefixFix.java | 26 import org.eclipse.swt.graphics.Image; 65 public Image getImage() {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
SwtUtilsTest.java | 22 import org.eclipse.swt.graphics.Image; 32 import java.awt.image.BufferedImage; 42 // Note: We need an TYPE_INT_ARGB SWT image here (instead of TYPE_INT_ARGB_PRE) to 43 // prevent the alpha from being pre-multiplied into the RGB when drawing the image. 53 // Convert the RGB image, effectively discarding the alpha channel entirely. 54 Image outImage = SwtUtils.convertToSwt(display, inImage, false, -1); 77 // Convert back to AWT and compare with original AWT image 81 // Both image have the same RGBA ordering 90 // asserted both images have the same color image type except 109 Image outImage = SwtUtils.convertToSwt(display, inImage, false, 128) 224 Image image = createSampleImage(256, 256); local 231 Image image = createSampleImage(256, 256); local 269 Image image = createSampleImage(256, 256); local 340 Image image = new Image(display, data); local [all...] |
/external/chromium_org/chrome/browser/ |
icon_manager.cc | 19 gfx::Image* image) { 22 callback.Run(image); 40 gfx::Image* IconManager::LookupIconFromFilepath(const base::FilePath& file_name, 49 gfx::Image* IconManager::LookupIconFromGroup(const IconGroupID& group, 87 gfx::Image* result = LookupIconFromGroup(group, rit->second.size); 96 IconLoader* loader, gfx::Image* result, const IconGroupID& group) {
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
CFlatButton.java | 21 import org.eclipse.swt.graphics.Image; 50 private Image m_image; 96 // draw image 97 Image image = getImage(); 98 if (image != null) { 99 Rectangle imageBounds = image.getBounds(); 103 gc.drawImage(image, x, y); 149 public final Image getImage() { 153 public void setImage(Image image) [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/ |
DesignerPlugin.java | 21 import org.eclipse.swt.graphics.Image; 42 * like logging. For things like image loading, it has its own local code such that 43 * it can find its image resources locally instead of requiring the embedding plugin 80 for (Image image : sImageCache.values()) { 81 image.dispose(); 204 private static Map<String, Image> sImageCache = Maps.newHashMap(); 206 public static Image getImage(String path) { 207 Image image = sImageCache.get(path) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/texture/ |
Texture2D.java | 57 * Creates a new two-dimensional texture using the given image. 58 * @param img The image to use. 60 public Texture2D(Image img){ 79 public Texture2D(int width, int height, Image.Format format){ 80 this(new Image(format, width, height, null)); 94 public Texture2D(int width, int height, int numSamples, Image.Format format){ 95 this(new Image(format, width, height, null));
|
Texture3D.java | 57 * Creates a new three-dimensional texture using the given image. 58 * @param img The image to use. 60 public Texture3D(Image img) { 80 public Texture3D(int width, int height, int depth, Image.Format format) { 81 this(new Image(format, width, height, depth, null)); 95 public Texture3D(int width, int height, int depth, int numSamples, Image.Format format) { 96 this(new Image(format, width, height, depth, null));
|
/external/chromium_org/chrome/browser/extensions/ |
extension_action_icon_factory_unittest.cc | 25 #include "ui/gfx/image/image_skia.h" 45 gfx::Image EnsureImageSize(const gfx::Image& original, int size) { 53 return gfx::Image::CreateFrom1xBitmap(resized); 67 gfx::Image LoadIcon(const std::string& filename) { 80 return gfx::Image::CreateFrom1xBitmap(bitmap); 203 gfx::Image icon = icon_factory.GetIcon(0); 224 gfx::Image set_icon = LoadIcon("browser_action/no_icon/icon.png"); 234 gfx::Image icon = icon_factory.GetIcon(0); 262 gfx::Image default_icon [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
SwtUtils.java | 28 import org.eclipse.swt.graphics.Image; 36 import java.awt.image.BufferedImage; 37 import java.awt.image.DataBuffer; 38 import java.awt.image.DataBufferByte; 39 import java.awt.image.DataBufferInt; 40 import java.awt.image.WritableRaster; 44 * Various generic SWT utilities such as image conversion. 81 * @return true if we can convert the given buffered image format 100 * @param image the image to be converte [all...] |
/external/giflib/ |
dgif_lib.c | 288 This routine should be called before any attempt to read an image. 327 This routine should be called before any attempt to read an image. 328 Note it is assumed the Image desc. header has been read. 344 if (DGifGetWord(GifFile, &GifFile->Image.Left) == GIF_ERROR || 345 DGifGetWord(GifFile, &GifFile->Image.Top) == GIF_ERROR || 346 DGifGetWord(GifFile, &GifFile->Image.Width) == GIF_ERROR || 347 DGifGetWord(GifFile, &GifFile->Image.Height) == GIF_ERROR) 351 GifFreeMapObject(GifFile->Image.ColorMap); 352 GifFile->Image.ColorMap = NULL; 356 GifFile->Image.Interlace = (Buf[0] & 0x40) ? true : false [all...] |