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

  /external/chromium_org/ui/gfx/win/
scoped_set_map_mode.h 19 : hdc_(hdc),
21 DCHECK(hdc_);
27 const int mode = SetMapMode(hdc_, old_map_mode_);
32 HDC hdc_; member in class:gfx::ScopedSetMapMode
  /external/chromium_org/base/win/
scoped_hdc.h 23 hdc_(GetDC(hwnd)) {
26 DCHECK(hdc_);
31 CHECK(hdc_);
36 if (hdc_)
37 ReleaseDC(hwnd_, hdc_);
40 operator HDC() { return hdc_; }
44 HDC hdc_; member in class:base::win::ScopedGetDC
scoped_select_object.h 20 : hdc_(hdc),
22 DCHECK(hdc_);
28 HGDIOBJ object = SelectObject(hdc_, oldobj_);
34 HDC hdc_; member in class:base::win::ScopedSelectObject
  /external/chromium_org/skia/ext/
bitmap_platform_device_win.cc 59 if (!hdc_) {
60 hdc_ = CreateCompatibleDC(NULL);
61 InitializeDC(hdc_);
62 old_hbitmap_ = static_cast<HBITMAP>(SelectObject(hdc_, hbitmap_));
66 return hdc_;
70 SkASSERT(hdc_);
71 SelectObject(hdc_, old_hbitmap_);
72 DeleteDC(hdc_);
73 hdc_ = NULL;
79 return hdc_ != NULL
    [all...]
vector_platform_device_emf_win.cc 100 hdc_(dc),
113 return hdc_;
329 LoadTransformToDC(hdc_, actual_transform);
334 LoadTransformToDC(hdc_, transform_);
343 LoadTransformToDC(hdc_, identity);
348 LoadTransformToDC(hdc_, transform_);
480 && setup.useGDI(hdc_, paint)) {
483 useDrawPath = !EnsureExtTextOut(hdc_, SkScalarRoundToInt(x),
521 setup.useGDI(hdc_, paint)) {
532 useDrawText = !EnsureExtTextOut(hdc_, startX, startY
    [all...]
bitmap_platform_device_win.h 88 HDC hdc_; member in class:skia::BitmapPlatformDevice
103 // Create/destroy hdc_, which is the memory DC for our bitmap data.
vector_platform_device_emf_win.h 117 HDC hdc_; member in class:skia::VectorPlatformDeviceEmf
  /external/chromium_org/printing/
emf_win.cc 153 Emf::Emf() : emf_(NULL), hdc_(NULL) {
161 DCHECK(!hdc_);
168 DCHECK(!emf_ && !hdc_);
169 hdc_ = CreateEnhMetaFile(NULL, metafile_path.value().c_str(), NULL, NULL);
170 DCHECK(hdc_);
171 return hdc_ != NULL;
175 DCHECK(!emf_ && !hdc_);
182 DCHECK(!emf_ && !hdc_);
183 hdc_ = CreateEnhMetaFile(NULL, NULL, NULL, NULL);
184 DCHECK(hdc_);
    [all...]
emf_win.h 66 // when hdc_ is non-NULL. |page_size|, |content_area|, and |scale_factor| are
83 return hdc_;
118 HDC hdc_; member in class:printing::Emf

Completed in 95 milliseconds