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

  /external/chromium_org/base/win/
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
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
  /external/chromium_org/content/browser/renderer_host/
backing_store_win.h 21 HDC hdc() { return hdc_; }
44 HDC hdc_; member in class:content::BackingStoreWin
  /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/base/win/
scoped_hdc.h 20 ScopedHDC() : hdc_(NULL) { }
21 explicit ScopedHDC(HDC h) : hdc_(h) { }
28 return hdc_;
33 hdc_ = h;
36 operator HDC() { return hdc_; }
43 if (hdc_)
44 DeleteDC(hdc_);
48 HDC hdc_; member in class:base::win::ScopedHDC
  /external/chromium_org/skia/ext/
bitmap_platform_device_win.h 89 HDC hdc_; member in class:skia::BitmapPlatformDevice
104 // Create/destroy hdc_, which is the memory DC for our bitmap data.
vector_platform_device_emf_win.h 119 HDC hdc_; member in class:skia::VectorPlatformDeviceEmf
  /external/chromium_org/printing/
emf_win.h 62 // when hdc_ is non-NULL. |page_size|, |content_area|, and |scale_factor| are
86 return hdc_;
126 HDC hdc_; member in class:printing::Emf

Completed in 167 milliseconds