OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:beginplatformpaint
(Results
1 - 25
of
30
) sorted by null
1
2
/external/chromium_org/skia/ext/
platform_device_linux.cc
9
PlatformSurface PlatformDevice::
BeginPlatformPaint
() {
platform_canvas.cc
21
PlatformSurface
BeginPlatformPaint
(SkCanvas* canvas) {
24
return platform_device->
BeginPlatformPaint
();
platform_canvas.h
112
// given canvas. If this function returns false,
BeginPlatformPaint
will
132
// after calling the platform-specific
BeginPlatformPaint
; this will
134
SK_API PlatformSurface
BeginPlatformPaint
(SkCanvas* canvas);
137
// Helper class for pairing calls to
BeginPlatformPaint
and EndPlatformPaint.
138
// Upon construction invokes
BeginPlatformPaint
, and upon destruction invokes
143
platform_surface_ =
BeginPlatformPaint
(canvas);
vector_platform_device_skia.cc
37
PlatformSurface VectorPlatformDeviceSkia::
BeginPlatformPaint
() {
46
return raster_surface_->
BeginPlatformPaint
();
vector_platform_device_skia.h
31
virtual PlatformSurface
BeginPlatformPaint
() OVERRIDE;
bitmap_platform_device_skia.cc
63
PlatformSurface BitmapPlatformDevice::
BeginPlatformPaint
() {
platform_device.h
111
virtual PlatformSurface
BeginPlatformPaint
();
113
// Finish a previous call to
beginPlatformPaint
.
bitmap_platform_device_skia.h
45
virtual PlatformSurface
BeginPlatformPaint
() OVERRIDE;
bitmap_platform_device_win.cc
271
HDC BitmapPlatformDevice::
BeginPlatformPaint
() {
290
HDC source_dc =
BeginPlatformPaint
();
bitmap_platform_device_cairo.cc
189
cairo_t* BitmapPlatformDevice::
BeginPlatformPaint
() {
bitmap_platform_device_win.h
54
virtual PlatformSurface
BeginPlatformPaint
() OVERRIDE;
platform_device_mac.cc
25
CGContextRef PlatformDevice::
BeginPlatformPaint
() {
vector_platform_device_emf_win.cc
116
HDC VectorPlatformDeviceEmf::
BeginPlatformPaint
() {
203
HDC dc =
BeginPlatformPaint
();
244
HDC dc =
BeginPlatformPaint
();
927
HDC dc =
BeginPlatformPaint
();
vector_platform_device_emf_win.h
34
virtual PlatformSurface
BeginPlatformPaint
() OVERRIDE;
bitmap_platform_device_cairo.h
91
virtual cairo_t*
BeginPlatformPaint
() OVERRIDE;
platform_device_win.cc
54
PlatformSurface PlatformDevice::
BeginPlatformPaint
() {
/external/chromium_org/ui/gfx/
canvas_paint_gtk.cc
65
context_ = skia::
BeginPlatformPaint
(canvas);
102
context_ = skia::
BeginPlatformPaint
(platform_canvas());
blit.cc
105
BlitContextToContext(skia::
BeginPlatformPaint
(dst_canvas), dst_rect,
116
skia::
BeginPlatformPaint
(src_canvas), src_origin);
126
BlitContextToContext(skia::
BeginPlatformPaint
(dst_canvas), dst_rect,
127
skia::
BeginPlatformPaint
(src_canvas), src_origin);
canvas.cc
603
NativeDrawingContext Canvas::
BeginPlatformPaint
() {
604
return skia::
BeginPlatformPaint
(canvas_);
/external/chromium/webkit/glue/
webthemeengine_impl_win.cc
386
HDC hdc = skia::
BeginPlatformPaint
(canvas);
398
HDC hdc = skia::
BeginPlatformPaint
(canvas);
410
HDC hdc = skia::
BeginPlatformPaint
(canvas);
422
HDC hdc = skia::
BeginPlatformPaint
(canvas);
436
HDC hdc = skia::
BeginPlatformPaint
(canvas);
449
HDC hdc = skia::
BeginPlatformPaint
(canvas);
464
HDC hdc = skia::
BeginPlatformPaint
(canvas);
477
HDC hdc = skia::
BeginPlatformPaint
(canvas);
/external/chromium/chrome/browser/ui/views/
theme_helpers.cc
35
HDC dc = canvas.
beginPlatformPaint
();
/external/chromium_org/content/browser/aura/
software_output_device_win.cc
83
HDC dib_dc = skia::
BeginPlatformPaint
(canvas);
/external/chromium/chrome/browser/ui/views/tabs/
native_view_photobooth_win.cc
104
HDC target_dc = canvas->
BeginPlatformPaint
();
/external/chromium_org/chrome/browser/ui/views/tabs/
native_view_photobooth_win.cc
103
HDC target_dc = canvas->
BeginPlatformPaint
();
/external/chromium_org/tools/valgrind/tsan_v2/
suppressions.txt
64
race:skia::
BeginPlatformPaint
Completed in 272 milliseconds
1
2