/external/webkit/WebCore/platform/graphics/ |
D | BitmapImage.cpp | 46 BitmapImage::BitmapImage(ImageObserver* observer) in BitmapImage() function in WebCore::BitmapImage 69 BitmapImage::~BitmapImage() in ~BitmapImage() 75 void BitmapImage::destroyDecodedData(bool destroyAll) in destroyDecodedData() 93 void BitmapImage::destroyDecodedDataIfNecessary(bool destroyAll) in destroyDecodedDataIfNecessary() 102 void BitmapImage::destroyMetadataAndNotify(int framesCleared) in destroyMetadataAndNotify() 113 void BitmapImage::cacheFrame(size_t index) in cacheFrame() 142 IntSize BitmapImage::size() const in size() 151 IntSize BitmapImage::currentFrameSize() const in currentFrameSize() 158 bool BitmapImage::dataChanged(bool allDataReceived) in dataChanged() 178 String BitmapImage::filenameExtension() const in filenameExtension() [all …]
|
D | BitmapImage.h | 101 class BitmapImage : public Image { 105 static PassRefPtr<BitmapImage> create(NativeImagePtr nativeImage, ImageObserver* observer = 0) 107 return adoptRef(new BitmapImage(nativeImage, observer)); 109 static PassRefPtr<BitmapImage> create(ImageObserver* observer = 0) 111 return adoptRef(new BitmapImage(observer)); 113 ~BitmapImage(); 144 static PassRefPtr<BitmapImage> create(HBITMAP); 168 BitmapImage(NativeImagePtr, ImageObserver* = 0); 169 BitmapImage(ImageObserver* = 0); 219 void advanceAnimation(Timer<BitmapImage>*); [all …]
|
D | Image.cpp | 56 DEFINE_STATIC_LOCAL(RefPtr<Image>, nullImage, (BitmapImage::create()));; in nullImage()
|
/external/webkit/WebCore/platform/graphics/qt/ |
D | ImageQt.cpp | 123 BitmapImage::BitmapImage(QPixmap* pixmap, ImageObserver* observer) in BitmapImage() function in WebCore::BitmapImage 155 void BitmapImage::initPlatformData() in initPlatformData() 159 void BitmapImage::invalidatePlatformData() in invalidatePlatformData() 164 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dst, in draw() 200 void BitmapImage::checkForSolidColor() in checkForSolidColor() 217 PassRefPtr<BitmapImage> BitmapImage::create(HBITMAP hBitmap) in create() 219 return BitmapImage::create(new QPixmap(QPixmap::fromWinHBITMAP(hBitmap))); in create()
|
/external/webkit/WebCore/platform/graphics/win/ |
D | ImageCairoWin.cpp | 38 PassRefPtr<BitmapImage> BitmapImage::create(HBITMAP hBitmap) in create() 55 return adoptRef(new BitmapImage(image)); in create() 58 bool BitmapImage::getHBITMAPOfSize(HBITMAP bmp, LPSIZE size) in getHBITMAPOfSize() 83 IntSize imageSize = BitmapImage::size(); in getHBITMAPOfSize() 95 void BitmapImage::drawFrameMatchingSourceSize(GraphicsContext* ctxt, const FloatRect& dstRect, cons… in drawFrameMatchingSourceSize() 110 IntSize imageSize = BitmapImage::size(); in drawFrameMatchingSourceSize()
|
D | ImageWin.cpp | 37 void BitmapImage::initPlatformData() in initPlatformData() 41 void BitmapImage::invalidatePlatformData() in invalidatePlatformData() 48 RefPtr<BitmapImage> img = BitmapImage::create(); in loadPlatformResource() 53 bool BitmapImage::getHBITMAP(HBITMAP bmp) in getHBITMAP()
|
D | ImageCGWin.cpp | 38 PassRefPtr<BitmapImage> BitmapImage::create(HBITMAP hBitmap) in create() 59 return adoptRef(new BitmapImage(cgImage)); in create() 62 bool BitmapImage::getHBITMAPOfSize(HBITMAP bmp, LPSIZE size) in getHBITMAPOfSize() 78 IntSize imageSize = BitmapImage::size(); in getHBITMAPOfSize() 91 void BitmapImage::drawFrameMatchingSourceSize(GraphicsContext* ctxt, const FloatRect& dstRect, cons… in drawFrameMatchingSourceSize() 106 IntSize imageSize = BitmapImage::size(); in drawFrameMatchingSourceSize()
|
/external/webkit/WebCore/platform/graphics/haiku/ |
D | ImageHaiku.cpp | 72 WTF::PassRefPtr<BitmapImage> image = BitmapImage::create(); in loadPlatformResource() 79 void BitmapImage::initPlatformData() in initPlatformData() 83 void BitmapImage::invalidatePlatformData() in invalidatePlatformData() 88 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dst, const FloatRect& src, ColorSpac… in draw() 169 void BitmapImage::checkForSolidColor() in checkForSolidColor() 188 BBitmap* BitmapImage::getBBitmap() const in getBBitmap() 190 return const_cast<BitmapImage*>(this)->frameAtIndex(0); in getBBitmap()
|
/external/webkit/WebCore/platform/graphics/android/ |
D | ImageAndroid.cpp | 76 BitmapImage::BitmapImage(SkBitmapRef* ref, ImageObserver* observer) in BitmapImage() function in WebCore::BitmapImage 105 void BitmapImage::initPlatformData() in initPlatformData() 110 void BitmapImage::invalidatePlatformData() in invalidatePlatformData() 114 void BitmapImage::checkForSolidColor() in checkForSolidColor() 188 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, in draw() 244 void BitmapImage::setURL(const String& str) in setURL() 364 return BitmapImage::create(ref, 0); in loadPlatformResource()
|
D | ImageBufferAndroid.cpp | 83 m_image = BitmapImage::create(ref, 0); in image()
|
/external/webkit/WebCore/platform/graphics/gtk/ |
D | ImageGtk.cpp | 76 void BitmapImage::initPlatformData() in initPlatformData() 80 void BitmapImage::invalidatePlatformData() in invalidatePlatformData() 86 RefPtr<BitmapImage> img = BitmapImage::create(); in loadImageFromFile() 120 GdkPixbuf* BitmapImage::getGdkPixbuf() in getGdkPixbuf()
|
/external/webkit/WebCore/platform/graphics/mac/ |
D | ImageMac.mm | 27 #import "BitmapImage.h" 42 void BitmapImage::initPlatformData() 46 void BitmapImage::invalidatePlatformData() 61 RefPtr<Image> image = BitmapImage::create(); 73 CFDataRef BitmapImage::getTIFFRepresentation() 111 NSImage* BitmapImage::getNSImage()
|
/external/webkit/WebCore/platform/graphics/wx/ |
D | ImageWx.cpp | 76 RefPtr<Image> img = BitmapImage::create(); in loadPlatformResource() 82 void BitmapImage::initPlatformData() in initPlatformData() 89 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dst, const FloatRect& src, ColorSpac… in draw() 253 void BitmapImage::checkForSolidColor() in checkForSolidColor() 258 void BitmapImage::invalidatePlatformData() in invalidatePlatformData()
|
/external/webkit/WebCore/platform/graphics/cairo/ |
D | ImageCairo.cpp | 58 BitmapImage::BitmapImage(cairo_surface_t* surface, ImageObserver* observer) in BitmapImage() function in WebCore::BitmapImage 92 void BitmapImage::draw(GraphicsContext* context, const FloatRect& dst, const FloatRect& src, ColorS… in draw() 222 void BitmapImage::checkForSolidColor() in checkForSolidColor()
|
D | ImageBufferCairo.cpp | 116 m_image = BitmapImage::create(newsurface); in image()
|
/external/webkit/WebCore/platform/graphics/cg/ |
D | ImageCG.cpp | 68 BitmapImage::BitmapImage(CGImageRef cgImage, ImageObserver* observer) in BitmapImage() function in WebCore::BitmapImage 102 void BitmapImage::checkForSolidColor() in checkForSolidColor() 152 CGImageRef BitmapImage::getCGImageRef() in getCGImageRef() 157 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& destRect, const FloatRect& srcRect, … in draw()
|
D | ImageBufferCG.cpp | 120 m_image = BitmapImage::create(cgImage); in image()
|
/external/webkit/WebCore/platform/graphics/chromium/ |
D | ImageChromiumMac.mm | 34 #include "BitmapImage.h" 50 void BitmapImage::initPlatformData() 54 void BitmapImage::invalidatePlatformData()
|
/external/webkit/WebCore/platform/graphics/skia/ |
D | ImageSkia.cpp | 390 void BitmapImage::initPlatformData() in initPlatformData() 398 void BitmapImage::invalidatePlatformData() in invalidatePlatformData() 403 void BitmapImage::checkForSolidColor() in checkForSolidColor() 408 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, in draw()
|
/external/webkit/WebCore/loader/ |
D | CachedImage.cpp | 127 DEFINE_STATIC_LOCAL(RefPtr<BitmapImage>, nullImage, (BitmapImage::create())); in nullImage() 255 m_image = BitmapImage::create(this); in createImage()
|
/external/webkit/WebCore/loader/icon/ |
D | IconRecord.cpp | 68 m_image = BitmapImage::create(); in setImageData()
|
/external/webkit/WebKit/mac/Plugins/ |
D | WebBaseNetscapePluginView.mm | 46 #import <WebCore/BitmapImage.h> 506 // BitmapImage will release the passed in CGImage on destruction. 507 RefPtr<Image> nodeImage = BitmapImage::create(cgImage);
|
/external/webkit/WebKit/chromium/src/ |
D | ChromiumBridge.cpp | 426 RefPtr<Image> image = BitmapImage::create(); in loadPlatformImageResource()
|
/external/webkit/WebCore/plugins/win/ |
D | PluginViewWin.cpp | 1088 return BitmapImage::create(hbmp.get()); in snapshot()
|
/external/webkit/WebCore/ |
D | ChangeLog-2009-06-16 | 1921 (WebCore::BitmapImage::draw): Use GraphicsContext save and restore 1939 (WebCore::BitmapImage::getHBITMAPOfSize): Revise implementation to 5581 * platform/graphics/BitmapImage.cpp: 5582 (WebCore::BitmapImage::destroyDecodedDataIfNecessary): 7646 (WebCore::BitmapImage::draw): 7647 (WebCore::BitmapImage::drawPattern): 8454 (WebCore::BitmapImage::draw): 12000 (WebCore::BitmapImage::draw): 14709 (WebCore::BitmapImage::draw): 15626 (WebCore::BitmapImage::draw): [all …]
|