/external/webkit/Source/WebCore/platform/graphics/ |
D | Image.cpp | 45 Image::Image(ImageObserver* observer) in Image() function in WebCore::Image 50 Image::~Image() in ~Image() 54 Image* Image::nullImage() in nullImage() 57 DEFINE_STATIC_LOCAL(RefPtr<Image>, nullImage, (BitmapImage::create()));; in nullImage() 61 bool Image::supportsType(const String& type) in supportsType() 66 bool Image::setData(PassRefPtr<SharedBuffer> data, bool allDataReceived) in setData() 79 void Image::fillWithSolidColor(GraphicsContext* ctxt, const FloatRect& dstRect, const Color& color,… in fillWithSolidColor() 90 …ternScale(const FloatRect& dstRect, const FloatRect& srcRect, Image::TileRule hRule, Image::TileRu… in calculatePatternScale() 94 if (hRule == Image::StretchTile) in calculatePatternScale() 96 if (vRule == Image::StretchTile) in calculatePatternScale() [all …]
|
D | ImageObserver.h | 31 class Image; variable 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;
|
D | Image.h | 78 class Image : public RefCounted<Image> { 83 virtual ~Image(); 85 static PassRefPtr<Image> create(ImageObserver* = 0); 86 static PassRefPtr<Image> loadPlatformResource(const char* name); 95 static Image* nullImage(); 155 static PassRefPtr<Image> loadPlatformThemeIcon(const char* name, int size); 162 Image(ImageObserver* = 0);
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderMediaControlsChromium.cpp | 41 typedef WTF::HashMap<const char*, Image*> MediaControlImageMap; 44 static Image* platformResource(const char* name) in platformResource() 48 if (Image* image = gMediaControlImageMap->get(name)) in platformResource() 50 if (Image* image = Image::loadPlatformResource(name).releaseRef()) { in platformResource() 64 static bool paintMediaButton(GraphicsContext* context, const IntRect& rect, Image* image) in paintMediaButton() 77 static Image* soundFull = platformResource("mediaSoundFull"); in paintMediaMuteButton() 78 static Image* soundNone = platformResource("mediaSoundNone"); in paintMediaMuteButton() 79 static Image* soundDisabled = platformResource("mediaSoundDisabled"); in paintMediaMuteButton() 93 static Image* mediaPlay = platformResource("mediaPlay"); in paintMediaPlayButton() 94 static Image* mediaPause = platformResource("mediaPause"); in paintMediaPlayButton() [all …]
|
D | RenderInputSpeech.cpp | 87 …DEFINE_STATIC_LOCAL(RefPtr<Image>, imageStateNormal, (Image::loadPlatformResource("inputSpeech"))); in paintInputFieldSpeechButton() 88 …DEFINE_STATIC_LOCAL(RefPtr<Image>, imageStateRecording, (Image::loadPlatformResource("inputSpeechR… in paintInputFieldSpeechButton() 89 …DEFINE_STATIC_LOCAL(RefPtr<Image>, imageStateWaiting, (Image::loadPlatformResource("inputSpeechWai… in paintInputFieldSpeechButton() 92 Image* image = imageStateNormal.get(); in paintInputFieldSpeechButton()
|
/external/webkit/Source/WebCore/loader/cache/ |
D | CachedImage.h | 42 CachedImage(Image*); 47 Image* image() const; // Returns the nullImage() if the image is not available yet. 82 virtual void decodedSizeChanged(const Image* image, int delta); 83 virtual void didDraw(const Image*); 85 virtual bool shouldPauseAnimation(const Image*); 86 virtual void animationAdvanced(const Image*); 87 virtual void changedInRect(const Image*, const IntRect&); 100 RefPtr<Image> m_image;
|
D | CachedImage.cpp | 65 CachedImage::CachedImage(Image* image) in CachedImage() 122 static Image* brokenImage() in brokenImage() 124 DEFINE_STATIC_LOCAL(RefPtr<Image>, brokenImage, (Image::loadPlatformResource("missingImage"))); in brokenImage() 128 Image* CachedImage::image() const in image() 138 return Image::nullImage(); in image() 344 void CachedImage::decodedSizeChanged(const Image* image, int delta) in decodedSizeChanged() 352 void CachedImage::didDraw(const Image* image) in didDraw() 364 bool CachedImage::shouldPauseAnimation(const Image* image) in shouldPauseAnimation() 378 void CachedImage::animationAdvanced(const Image* image) in animationAdvanced() 384 void CachedImage::changedInRect(const Image* image, const IntRect& rect) in changedInRect()
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
D | ImageDiff.cpp | 68 class Image { class 70 Image() in Image() function in Image 74 Image(const Image& image) in Image() function in Image 155 float percentageDifferent(const Image& baseline, const Image& actual) in percentageDifferent() 211 Image actualImage; in compareImages() 212 Image baselineImage; in compareImages() 241 Image actualImage; in untestedCompareImages() 242 Image baselineImage; in untestedCompareImages() 290 bool createImageDiff(const Image& image1, const Image& image2, Image* out) in createImageDiff() 294 *out = Image(image1); in createImageDiff() [all …]
|
/external/jmonkeyengine/engine/src/core/com/jme3/texture/ |
D | Image.java | 54 public class Image extends NativeObject implements Savable /*, Cloneable*/ { class 334 return new Image(id); in createDestructableClone() 341 public Image clone(){ in clone() 342 Image clone = (Image) super.clone(); in clone() 353 public Image() { in Image() method in Image 354 super(Image.class); in Image() 358 protected Image(int id){ in Image() method in Image 359 super(Image.class, id); in Image() 377 public Image(Format format, int width, int height, int depth, ArrayList<ByteBuffer> data, in Image() method in Image 409 public Image(Format format, int width, int height, ByteBuffer data, in Image() method in Image [all …]
|
/external/jmonkeyengine/engine/src/core/com/jme3/util/ |
D | SkyFactory.java | 12 import com.jme3.texture.Image; 13 import com.jme3.texture.Image.Format; 87 Image img = texture.getImage(); in createSky() 97 private static void checkImage(Image image) { in checkImage() 110 private static void checkImagesForCubeMap(Image... images) { in checkImagesForCubeMap() 125 Image image = images[i]; in checkImagesForCubeMap() 153 Image westImg = west.getImage(); in createSky() 154 Image eastImg = east.getImage(); in createSky() 155 Image northImg = north.getImage(); in createSky() 156 Image southImg = south.getImage(); in createSky() [all …]
|
/external/webkit/Source/WebCore/css/ |
D | CSSImageGeneratorValue.h | 37 class Image; variable 47 virtual PassRefPtr<Image> image(RenderObject*, const IntSize&) = 0; 57 Image* getImage(RenderObject*, const IntSize&); 58 void putImage(const IntSize&, PassRefPtr<Image>); 65 HashMap<IntSize, RefPtr<Image> > m_images; // A cache of Image objects by image size.
|
/external/jmonkeyengine/engine/src/android/com/jme3/asset/ |
D | AndroidImageInfo.java | 6 import com.jme3.texture.Image; 7 import com.jme3.texture.Image.Format; 69 format = Image.Format.Alpha8; in loadBitmap() 72 format = Image.Format.ARGB4444; in loadBitmap() 75 format = Image.Format.RGBA8; in loadBitmap() 78 format = Image.Format.RGB565; in loadBitmap()
|
/external/giflib/ |
D | gifalloc.c | 219 ApplyTranslation(SavedImage * Image, in ApplyTranslation() argument 223 register int RasterSize = Image->ImageDesc.Height * Image->ImageDesc.Width; in ApplyTranslation() 226 Image->RasterBits[i] = Translation[Image->RasterBits[i]]; in ApplyTranslation() 283 FreeExtension(SavedImage * Image) in FreeExtension() argument 287 if ((Image == NULL) || (Image->ExtensionBlocks == NULL)) { in FreeExtension() 290 for (ep = Image->ExtensionBlocks; in FreeExtension() 291 ep < (Image->ExtensionBlocks + Image->ExtensionBlockCount); ep++) in FreeExtension() 293 free((char *)Image->ExtensionBlocks); in FreeExtension() 294 Image->ExtensionBlocks = NULL; in FreeExtension()
|
D | dgif_lib.c | 342 if (DGifGetWord(GifFile, &GifFile->Image.Left) == GIF_ERROR || in DGifGetImageDesc() 343 DGifGetWord(GifFile, &GifFile->Image.Top) == GIF_ERROR || in DGifGetImageDesc() 344 DGifGetWord(GifFile, &GifFile->Image.Width) == GIF_ERROR || in DGifGetImageDesc() 345 DGifGetWord(GifFile, &GifFile->Image.Height) == GIF_ERROR) in DGifGetImageDesc() 352 GifFile->Image.Interlace = (Buf[0] & 0x40); in DGifGetImageDesc() 357 if (GifFile->Image.ColorMap && GifFile->SavedImages == NULL) in DGifGetImageDesc() 358 FreeMapObject(GifFile->Image.ColorMap); in DGifGetImageDesc() 360 GifFile->Image.ColorMap = MakeMapObject(1 << BitsPerPixel, NULL); in DGifGetImageDesc() 361 if (GifFile->Image.ColorMap == NULL) { in DGifGetImageDesc() 367 for (i = 0; i < GifFile->Image.ColorMap->ColorCount; i++) { in DGifGetImageDesc() [all …]
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
D | BooleanObjectPropertyEditor.java | 19 import org.eclipse.swt.graphics.Image; 29 private static final Image m_nullImage = DesignerPlugin.getImage("properties/BooleanNull.png"); 30 private static final Image m_trueImage = DesignerPlugin.getImage("properties/true.png"); 31 private static final Image m_falseImage = DesignerPlugin.getImage("properties/false.png"); 52 Image image = booleanValue ? m_trueImage : m_falseImage; in paint() 57 Image image = m_nullImage; in paint() 63 private void paint(GC gc, int x, int y, int width, int height, String text, Image image) { in paint()
|
D | BooleanPropertyEditor.java | 14 import org.eclipse.swt.graphics.Image; 28 private static final Image m_trueImage = DesignerPlugin.getImage("properties/true.png"); 29 private static final Image m_falseImage = DesignerPlugin.getImage("properties/false.png"); 30 private static final Image m_unknownImage = 52 Image image = booleanValue ? m_trueImage : m_falseImage; in paint() 63 private void paint(GC gc, int x, int y, int width, int height, Image image, String text) { in paint()
|
/external/jmonkeyengine/engine/src/desktop/com/jme3/texture/plugins/ |
D | AWTLoader.java | 39 import com.jme3.texture.Image; 40 import com.jme3.texture.Image.Format; 104 public Image load(BufferedImage img, boolean flipY){ in load() 116 return new Image(Format.ABGR8, width, height, data1); in load() 124 return new Image(Format.BGR8, width, height, data2); in load() 131 return new Image(Format.Luminance8, width, height, data3); in load() 139 return new Image(Format.Luminance16, width, height, data4); in load() 162 return new Image(Format.RGB8, width, height, data); in load() 182 return new Image(Format.RGBA8, width, height, data); in load() 186 public Image load(InputStream in, boolean flipY) throws IOException{ in load() [all …]
|
/external/zlib/src/contrib/ada/ |
D | buffer_demo.adb | 39 ("Uncompressed size : " & Positive'Image (Text'Length) & " bytes"); 60 & Stream_Element_Offset'Image (L) & " bytes"); 94 ("Total in : " & Count'Image (Total_In (Decompressor)) & 95 ", out : " & Count'Image (Total_Out (Decompressor))); 103 & Boolean'Image (Uncompressed_Data = Source));
|
/external/chromium/chrome/browser/ui/gtk/ |
D | custom_drag.h | 20 class Image; variable 26 explicit CustomDrag(gfx::Image* icon, int code_mask, GdkDragAction action); 52 gfx::Image* image_; 65 gfx::Image* icon); 69 static void BeginDrag(const DownloadItem* item, gfx::Image* icon); 72 DownloadItemDrag(const DownloadItem* item, gfx::Image* icon);
|
/external/webkit/Source/WebCore/platform/graphics/brew/ |
D | ImageBrew.cpp | 43 PassRefPtr<Image> Image::loadPlatformResource(const char *name) in loadPlatformResource() 49 return Image::nullImage(); in loadPlatformResource() 51 RefPtr<Image> image = BitmapImage::create(); in loadPlatformResource()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/ |
D | DrawUtils.java | 20 import org.eclipse.swt.graphics.Image; 76 public static final void drawImageCV(GC gc, Image image, int x, int y, int height) { in drawImageCV() 86 public static final void drawImageCHCV(GC gc, Image image, int x, int y, int width, int height) { in drawImageCHCV() 100 public static void drawScaledImage(GC gc, Image image, Rectangle targetRectangle) { in drawScaledImage() 205 public static Image loadImage(Class<?> clazz, String path) { in loadImage() 211 return new Image(null, stream); in loadImage() 225 public static Image getThubmnail(Image image, in getThubmnail() 235 Image thumbnail = new Image(null, minWidth, minHeight); in getThubmnail() 246 return new Image(null, thumbnailData); in getThubmnail() 251 return new Image(null, image, SWT.IMAGE_COPY); in getThubmnail() [all …]
|
/external/opencv/cvaux/src/ |
D | cvfindface.cpp | 48 CvSeq * cvFindFace(IplImage * Image,CvMemStorage* lpStorage) in cvFindFace() argument 52 FD.FindFace(Image); in cvFindFace() 58 CvSeq * cvPostBoostingFindFace(IplImage * Image,CvMemStorage* lpStorage) in cvPostBoostingFindFace() argument 62 FD.FindFace(Image); in cvPostBoostingFindFace()
|
/external/webkit/Source/WebCore/svg/graphics/filters/ |
D | SVGFEImage.h | 32 class Image; variable 36 static PassRefPtr<FEImage> create(Filter*, RefPtr<Image>, const SVGPreserveAspectRatio&); 50 FEImage(Filter*, RefPtr<Image>, const SVGPreserveAspectRatio&); 52 RefPtr<Image> m_image;
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/ |
D | ImageLoader.java | 35 import com.jme3.texture.Image; 64 public Image loadImage(BlenderInputStream inputStream, int startPosition, boolean flipY) { in loadImage() 67 Image result = this.loadImage(inputStream, ImageType.AWT, flipY); in loadImage() 97 public Image loadImage(InputStream inputStream, ImageType imageType, boolean flipY) { in loadImage() 98 Image result = null; in loadImage()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
D | CImageLabel.java | 15 import org.eclipse.swt.graphics.Image; 34 private Image m_image; 64 public Image getImage() { in getImage() 68 public void setImage(Image image) { in setImage() 87 private Image m_backImage; 98 m_backImage = new Image(getDisplay(), clientArea.width, clientArea.height); in doPaint()
|