OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PlatformBitmap
(Results
1 - 19
of
19
) sorted by null
/external/chromium_org/content/browser/renderer_host/
backing_store.h
24
class
PlatformBitmap
;
70
skia::
PlatformBitmap
* output) = 0;
test_backing_store.cc
29
skia::
PlatformBitmap
* output) {
test_backing_store.h
29
skia::
PlatformBitmap
* output) OVERRIDE;
backing_store_aura.h
50
skia::
PlatformBitmap
* output) OVERRIDE;
backing_store_win.h
37
skia::
PlatformBitmap
* output) OVERRIDE;
backing_store_gtk.h
68
skia::
PlatformBitmap
* output) OVERRIDE;
backing_store_mac.h
45
skia::
PlatformBitmap
* output) OVERRIDE;
backing_store_aura.cc
160
skia::
PlatformBitmap
* output) {
backing_store_win.cc
157
skia::
PlatformBitmap
* output) {
backing_store_gtk.cc
517
skia::
PlatformBitmap
* output) {
render_widget_host_impl.cc
680
skia::
PlatformBitmap
output;
[
all
...]
/external/chromium_org/skia/ext/
bitmap_platform_device_android.cc
84
// Port of
PlatformBitmap
to android
85
PlatformBitmap
::~
PlatformBitmap
() {
89
bool
PlatformBitmap
::Allocate(int width, int height, bool is_opaque) {
platform_canvas.h
158
//
PlatformBitmap
holds a PlatformSurface that can also be used as an SkBitmap.
159
class SK_API
PlatformBitmap
{
161
PlatformBitmap
();
162
~
PlatformBitmap
();
183
DISALLOW_COPY_AND_ASSIGN(
PlatformBitmap
);
platform_canvas.cc
76
PlatformBitmap
::
PlatformBitmap
() : surface_(0), platform_extra_(0) {}
bitmap_platform_device_linux.cc
188
// Port of
PlatformBitmap
to linux
189
PlatformBitmap
::~
PlatformBitmap
() {
193
bool
PlatformBitmap
::Allocate(int width, int height, bool is_opaque) {
194
// The SkBitmap allocates and owns the bitmap memory;
PlatformBitmap
owns the
196
// outlive the
PlatformBitmap
if additional copies are made.
bitmap_platform_device_mac.cc
279
// Port of
PlatformBitmap
to mac
281
PlatformBitmap
::~
PlatformBitmap
() {
286
bool
PlatformBitmap
::Allocate(int width, int height, bool is_opaque) {
bitmap_platform_device_win.cc
322
// Port of
PlatformBitmap
to win
324
PlatformBitmap
::~
PlatformBitmap
() {
332
bool
PlatformBitmap
::Allocate(int width, int height, bool is_opaque) {
platform_canvas_unittest.cc
400
TEST(PlatformBitmapTest,
PlatformBitmap
) {
403
scoped_ptr<
PlatformBitmap
> platform_bitmap(new
PlatformBitmap
);
438
// The SkBitmaps derived from a
PlatformBitmap
must be capable of outliving
439
// the
PlatformBitmap
.
/external/chromium_org/content/browser/renderer_host/media/
web_contents_video_capture_device_unittest.cc
254
// Although it's not necessary, use a
PlatformBitmap
here (instead of a
256
skia::
PlatformBitmap
output;
Completed in 380 milliseconds