/external/chromium_org/skia/ext/ |
D | bitmap_platform_device_skia.cc | 10 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create() 20 return new BitmapPlatformDevice(bitmap); in Create() 25 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width, in CreateAndClear() 28 BitmapPlatformDevice* device = Create(width, height, is_opaque); in CreateAndClear() 34 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create() 45 return new BitmapPlatformDevice(bitmap); in Create() 48 BitmapPlatformDevice::BitmapPlatformDevice(const SkBitmap& bitmap) in BitmapPlatformDevice() function in skia::BitmapPlatformDevice 53 BitmapPlatformDevice::~BitmapPlatformDevice() { in ~BitmapPlatformDevice() 56 SkBaseDevice* BitmapPlatformDevice::onCreateCompatibleDevice( in onCreateCompatibleDevice() 60 return BitmapPlatformDevice::Create(width, height, isOpaque); in onCreateCompatibleDevice() [all …]
|
D | bitmap_platform_device_cairo.cc | 81 void BitmapPlatformDevice::SetMatrixClip( in SetMatrixClip() 89 void BitmapPlatformDevice::LoadConfig() { in LoadConfig() 107 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create() 129 return new BitmapPlatformDevice(bitmap, surface); in Create() 132 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create() 138 BitmapPlatformDevice* device = Create(width, height, is_opaque, surface); in Create() 148 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width, in CreateAndClear() 156 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create() 168 BitmapPlatformDevice::BitmapPlatformDevice( in BitmapPlatformDevice() function in skia::BitmapPlatformDevice 178 BitmapPlatformDevice::~BitmapPlatformDevice() { in ~BitmapPlatformDevice() [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() 135 BitmapPlatformDevice* rv = new BitmapPlatformDevice(context, bitmap); in Create() 144 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width, in CreateAndClear() 147 BitmapPlatformDevice* device = Create(NULL, width, height, is_opaque); in CreateAndClear() 153 BitmapPlatformDevice* BitmapPlatformDevice::CreateWithData(uint8_t* data, in CreateWithData() 161 BitmapPlatformDevice* rv = Create(context, width, height, is_opaque); in CreateWithData() 173 BitmapPlatformDevice::BitmapPlatformDevice( in BitmapPlatformDevice() function in skia::BitmapPlatformDevice [all …]
|
D | bitmap_platform_device_win.cc | 146 HDC BitmapPlatformDevice::GetBitmapDC() { in GetBitmapDC() 157 void BitmapPlatformDevice::ReleaseBitmapDC() { in ReleaseBitmapDC() 165 bool BitmapPlatformDevice::IsBitmapDCCreated() in IsBitmapDCCreated() 171 void BitmapPlatformDevice::SetMatrixClip( in SetMatrixClip() 179 void BitmapPlatformDevice::LoadConfig() { in LoadConfig() 193 BitmapPlatformDevice* BitmapPlatformDevice::Create( in Create() 222 return new BitmapPlatformDevice(hbitmap, bitmap); in Create() 226 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create() 232 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width, in CreateAndClear() 235 BitmapPlatformDevice* device = BitmapPlatformDevice::Create(width, height, in CreateAndClear() [all …]
|
D | bitmap_platform_device_cairo.h | 59 class BitmapPlatformDevice : public SkBitmapDevice, public PlatformDevice { 67 BitmapPlatformDevice(const SkBitmap& other, cairo_surface_t* surface); 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, 101 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque, 128 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(); 55 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, 97 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(); 77 BitmapPlatformDevice(HBITMAP hbitmap, const SkBitmap& bitmap); 122 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 | 199 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/chrome/browser/ui/views/ |
D | theme_helpers.cc | 67 skia::BitmapPlatformDevice& device = in GetRebarGradientColors() 68 static_cast<skia::BitmapPlatformDevice&>( in GetRebarGradientColors()
|
/external/chromium_org/ui/native_theme/ |
D | native_theme_win.cc | 608 skia::RefPtr<skia::BitmapPlatformDevice> device = skia::AdoptRef( in PaintIndirect() 609 skia::BitmapPlatformDevice::Create( in PaintIndirect()
|