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

  /external/webkit/WebCore/platform/graphics/win/
ImageWin.cpp 28 #include "BitmapImage.h"
37 void BitmapImage::initPlatformData()
41 void BitmapImage::invalidatePlatformData()
48 RefPtr<BitmapImage> img = BitmapImage::create();
53 bool BitmapImage::getHBITMAP(HBITMAP bmp)
ImageCGWin.cpp 28 #include "BitmapImage.h"
38 PassRefPtr<BitmapImage> BitmapImage::create(HBITMAP hBitmap)
56 // The BitmapImage takes ownership of this.
59 return adoptRef(new BitmapImage(cgImage));
62 bool BitmapImage::getHBITMAPOfSize(HBITMAP bmp, LPSIZE size)
78 IntSize imageSize = BitmapImage::size();
91 void BitmapImage::drawFrameMatchingSourceSize(GraphicsContext* ctxt, const FloatRect& dstRect, const IntSize& srcSize, ColorSpace styleColorSpace, CompositeOperator compositeOp)
106 IntSize imageSize = BitmapImage::size();
ImageCairoWin.cpp 28 #include "BitmapImage.h"
38 PassRefPtr<BitmapImage> BitmapImage::create(HBITMAP hBitmap)
54 // The BitmapImage object takes over ownership of the cairo_surface_t*, so no need to destroy here.
55 return adoptRef(new BitmapImage(image));
58 bool BitmapImage::getHBITMAPOfSize(HBITMAP bmp, LPSIZE size)
83 IntSize imageSize = BitmapImage::size();
95 void BitmapImage::drawFrameMatchingSourceSize(GraphicsContext* ctxt, const FloatRect& dstRect, const IntSize& srcSize, ColorSpace styleColorSpace, CompositeOperator compositeOp)
110 IntSize imageSize = BitmapImage::size();
  /external/webkit/WebCore/platform/graphics/chromium/
ImageChromiumMac.mm 34 #include "BitmapImage.h"
50 void BitmapImage::initPlatformData()
54 void BitmapImage::invalidatePlatformData()
  /external/webkit/WebCore/platform/graphics/
BitmapImage.cpp 28 #include "BitmapImage.h"
46 BitmapImage::BitmapImage(ImageObserver* observer)
69 BitmapImage::~BitmapImage()
75 void BitmapImage::destroyDecodedData(bool destroyAll)
93 void BitmapImage::destroyDecodedDataIfNecessary(bool destroyAll)
102 void BitmapImage::destroyMetadataAndNotify(int framesCleared)
113 void BitmapImage::cacheFrame(size_t index)
142 IntSize BitmapImage::size() cons
    [all...]
BitmapImage.h 98 // BitmapImage Class
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)
    [all...]
Image.cpp 31 #include "BitmapImage.h"
56 DEFINE_STATIC_LOCAL(RefPtr<Image>, nullImage, (BitmapImage::create()));;
  /external/webkit/WebCore/platform/graphics/mac/
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/qt/
ImageQt.cpp 36 #include "BitmapImage.h"
123 BitmapImage::BitmapImage(QPixmap* pixmap, ImageObserver* observer)
155 void BitmapImage::initPlatformData()
159 void BitmapImage::invalidatePlatformData()
164 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dst,
200 void BitmapImage::checkForSolidColor()
217 PassRefPtr<BitmapImage> BitmapImage::create(HBITMAP hBitmap)
219 return BitmapImage::create(new QPixmap(QPixmap::fromWinHBITMAP(hBitmap)))
    [all...]
  /external/webkit/WebCore/platform/graphics/haiku/
ImageHaiku.cpp 36 #include "BitmapImage.h"
72 WTF::PassRefPtr<BitmapImage> image = BitmapImage::create();
79 void BitmapImage::initPlatformData()
83 void BitmapImage::invalidatePlatformData()
88 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dst, const FloatRect& src, ColorSpace styleColorSpace, CompositeOperator op)
169 void BitmapImage::checkForSolidColor()
188 BBitmap* BitmapImage::getBBitmap() const
190 return const_cast<BitmapImage*>(this)->frameAtIndex(0);
  /external/webkit/WebCore/platform/graphics/gtk/
ImageGtk.cpp 28 #include "BitmapImage.h"
76 void BitmapImage::initPlatformData()
80 void BitmapImage::invalidatePlatformData()
86 RefPtr<BitmapImage> img = BitmapImage::create();
120 GdkPixbuf* BitmapImage::getGdkPixbuf()
  /external/webkit/WebCore/loader/icon/
IconRecord.cpp 32 #include "BitmapImage.h"
68 m_image = BitmapImage::create();
  /external/webkit/WebCore/platform/graphics/android/
ImageAndroid.cpp 29 #include "BitmapImage.h"
76 BitmapImage::BitmapImage(SkBitmapRef* ref, ImageObserver* observer)
105 void BitmapImage::initPlatformData()
110 void BitmapImage::invalidatePlatformData()
114 void BitmapImage::checkForSolidColor()
188 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect,
203 SkDebugf("----- skip bitmapimage: [%d %d] pixels %p pixelref %p\n",
218 SkDebugf("----- skip bitmapimage: [%d %d] src-empty %d dst-empty %d\n",
237 SkDebugf("--- BitmapImage::draw [%d %d] orig [%d %d]\n"
    [all...]
ImageBufferAndroid.cpp 27 #include "BitmapImage.h"
83 m_image = BitmapImage::create(ref, 0);
  /external/webkit/WebCore/platform/graphics/wx/
ImageWx.cpp 30 #include "BitmapImage.h"
76 RefPtr<Image> img = BitmapImage::create();
82 void BitmapImage::initPlatformData()
89 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dst, const FloatRect& src, ColorSpace styleColorSpace, CompositeOperator op)
253 void BitmapImage::checkForSolidColor()
258 void BitmapImage::invalidatePlatformData()
  /external/webkit/WebCore/platform/graphics/cairo/
ImageCairo.cpp 29 #include "BitmapImage.h"
58 BitmapImage::BitmapImage(cairo_surface_t* surface, ImageObserver* observer)
92 void BitmapImage::draw(GraphicsContext* context, const FloatRect& dst, const FloatRect& src, ColorSpace styleColorSpace, CompositeOperator op)
222 void BitmapImage::checkForSolidColor()
ImageBufferCairo.cpp 32 #include "BitmapImage.h"
115 // BitmapImage will release the passed in surface on destruction
116 m_image = BitmapImage::create(newsurface);
  /external/webkit/WebCore/platform/graphics/cg/
ImageCG.cpp 27 #include "BitmapImage.h"
68 BitmapImage::BitmapImage(CGImageRef cgImage, ImageObserver* observer)
102 void BitmapImage::checkForSolidColor()
152 CGImageRef BitmapImage::getCGImageRef()
157 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& destRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator compositeOp)
ImageBufferCG.cpp 31 #include "BitmapImage.h"
119 // BitmapImage will release the passed in CGImage on destruction
120 m_image = BitmapImage::create(cgImage);
  /external/webkit/WebCore/platform/graphics/skia/
ImageSkia.cpp 34 #include "BitmapImage.h"
288 // ownership to BitmapImage; we must delete it here.
385 // BitmapImage Class
390 void BitmapImage::initPlatformData()
398 void BitmapImage::invalidatePlatformData()
403 void BitmapImage::checkForSolidColor()
408 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect,
  /external/webkit/WebCore/loader/
CachedImage.cpp 27 #include "BitmapImage.h"
127 DEFINE_STATIC_LOCAL(RefPtr<BitmapImage>, nullImage, (BitmapImage::create()));
255 m_image = BitmapImage::create(this);
  /external/webkit/WebKit/mac/Plugins/
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/
ChromiumBridge.cpp 73 #include "BitmapImage.h"
426 RefPtr<Image> image = BitmapImage::create();
  /external/webkit/WebCore/plugins/win/
PluginViewWin.cpp 32 #include "BitmapImage.h"
    [all...]
  /external/webkit/WebCore/
Android.mk 427 platform/graphics/BitmapImage.cpp \

Completed in 8876 milliseconds