/external/chromium_org/skia/ext/ |
D | bitmap_platform_device_skia.cc | 10 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create() 18 return new BitmapPlatformDevice(bitmap); in Create() 23 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width, in CreateAndClear() 26 BitmapPlatformDevice* device = Create(width, height, is_opaque); in CreateAndClear() 32 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create() 43 return new BitmapPlatformDevice(bitmap); in Create() 46 BitmapPlatformDevice::BitmapPlatformDevice(const SkBitmap& bitmap) in BitmapPlatformDevice() function in skia::BitmapPlatformDevice 51 BitmapPlatformDevice::~BitmapPlatformDevice() { in ~BitmapPlatformDevice() 54 SkBaseDevice* BitmapPlatformDevice::onCreateDevice(const SkImageInfo& info, in onCreateDevice() 57 return BitmapPlatformDevice::Create(info.width(), info.height(), in onCreateDevice() [all …]
|
D | bitmap_platform_device_cairo.cc | 73 void BitmapPlatformDevice::SetMatrixClip( in SetMatrixClip() 81 void BitmapPlatformDevice::LoadConfig() { in LoadConfig() 99 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create() 118 return new BitmapPlatformDevice(bitmap, cairo); in Create() 121 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create() 127 BitmapPlatformDevice* device = Create(width, height, is_opaque, surface); in Create() 137 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width, in CreateAndClear() 145 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create() 156 BitmapPlatformDevice::BitmapPlatformDevice( in BitmapPlatformDevice() function in skia::BitmapPlatformDevice 166 BitmapPlatformDevice::~BitmapPlatformDevice() { in ~BitmapPlatformDevice() [all …]
|
D | bitmap_platform_device_win.cc | 58 HDC BitmapPlatformDevice::GetBitmapDC() { in GetBitmapDC() 69 void BitmapPlatformDevice::ReleaseBitmapDC() { in ReleaseBitmapDC() 77 bool BitmapPlatformDevice::IsBitmapDCCreated() in IsBitmapDCCreated() 83 void BitmapPlatformDevice::SetMatrixClip( in SetMatrixClip() 91 void BitmapPlatformDevice::LoadConfig() { in LoadConfig() 119 BitmapPlatformDevice* BitmapPlatformDevice::Create( in Create() 145 return new BitmapPlatformDevice(hbitmap, bitmap); in Create() 149 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create() 155 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width, in CreateAndClear() 158 BitmapPlatformDevice* device = BitmapPlatformDevice::Create(width, height, in CreateAndClear() [all …]
|
D | bitmap_platform_device_mac.cc | 60 void BitmapPlatformDevice::ReleaseBitmapContext() { in ReleaseBitmapContext() 66 void BitmapPlatformDevice::SetMatrixClip( in SetMatrixClip() 74 void BitmapPlatformDevice::LoadConfig() { in LoadConfig() 96 BitmapPlatformDevice* BitmapPlatformDevice::Create(CGContextRef context, in Create() 134 BitmapPlatformDevice* rv = new BitmapPlatformDevice(context, bitmap); in Create() 143 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width, in CreateAndClear() 146 BitmapPlatformDevice* device = Create(NULL, width, height, is_opaque); in CreateAndClear() 152 BitmapPlatformDevice* BitmapPlatformDevice::CreateWithData(uint8_t* data, in CreateWithData() 160 BitmapPlatformDevice* rv = Create(context, width, height, is_opaque); in CreateWithData() 172 BitmapPlatformDevice::BitmapPlatformDevice( in BitmapPlatformDevice() function in skia::BitmapPlatformDevice [all …]
|
D | bitmap_platform_device_cairo.h | 59 class BitmapPlatformDevice : public SkBitmapDevice, public PlatformDevice { 67 BitmapPlatformDevice(const SkBitmap& other, cairo_t* cairo); 68 virtual ~BitmapPlatformDevice(); 73 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque); 78 static BitmapPlatformDevice* CreateAndClear(int width, int height, 83 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque, 100 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque, 127 DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice);
|
D | bitmap_platform_device_skia.h | 21 class BitmapPlatformDevice : public SkBitmapDevice, public PlatformDevice { 26 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque); 30 static BitmapPlatformDevice* CreateAndClear(int width, int height, 35 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque, 42 explicit BitmapPlatformDevice(const SkBitmap& other); 43 virtual ~BitmapPlatformDevice(); 54 DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice);
|
D | bitmap_platform_device_mac.h | 29 class SK_API BitmapPlatformDevice : public SkBitmapDevice, public PlatformDevice { 36 static BitmapPlatformDevice* Create(CGContextRef context, 42 static BitmapPlatformDevice* CreateAndClear(int width, int height, 47 static BitmapPlatformDevice* CreateWithData(uint8_t* data, 51 virtual ~BitmapPlatformDevice(); 63 BitmapPlatformDevice(CGContextRef context, 96 DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice);
|
D | bitmap_platform_device_win.h | 27 class SK_API BitmapPlatformDevice : public SkBitmapDevice, public PlatformDevice { 37 static BitmapPlatformDevice* Create(int width, int height, 42 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque); 46 static BitmapPlatformDevice* CreateAndClear(int width, int height, 49 virtual ~BitmapPlatformDevice(); 76 BitmapPlatformDevice(HBITMAP hbitmap, const SkBitmap& bitmap); 121 DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice);
|
D | vector_platform_device_skia.h | 19 class BitmapPlatformDevice; variable 52 skia::RefPtr<BitmapPlatformDevice> raster_surface_;
|
D | bitmap_platform_device_mac_unittest.cc | 22 bitmap_.reset(BitmapPlatformDevice::Create( in BitmapPlatformDeviceMacTest() 26 scoped_ptr<BitmapPlatformDevice> bitmap_;
|
D | vector_platform_device_skia.cc | 45 BitmapPlatformDevice::CreateAndClear(width(), height(), false)); in BeginPlatformPaint()
|
D | skia_utils_mac.mm | 193 skia::BitmapPlatformDevice::Create(NULL, width, height, false));
|
D | vector_platform_device_emf_win.cc | 36 return BitmapPlatformDevice::Create(width, height, is_opaque, in CreateDevice()
|
/external/chromium_org/ui/native_theme/ |
D | native_theme_win.cc | 660 skia::RefPtr<skia::BitmapPlatformDevice> device = skia::AdoptRef( in PaintIndirect() 661 skia::BitmapPlatformDevice::Create( in PaintIndirect()
|
/external/chromium_org/skia/ |
D | BUILD.gn | 476 # Select the right BitmapPlatformDevice.
|