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

  /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/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/content/browser/renderer_host/
backing_store_win.h 21 HDC hdc() { return hdc_; }
44 HDC hdc_; member in class:content::BackingStoreWin
backing_store_win.cc 65 hdc_ = CreateCompatibleDC(screen_dc);
70 DCHECK(hdc_);
72 SelectObject(hdc_, original_bitmap_);
78 DeleteDC(hdc_);
112 backing_store_dib_ = CreateDIB(hdc_,
120 original_bitmap_ = SelectObject(hdc_, backing_store_dib_);
143 gfx::StretchDIBits(hdc_,
183 ScrollDC(hdc_, dx, dy, NULL, &r, NULL, &damaged_rect);
  /external/chromium_org/skia/ext/
bitmap_platform_device_win.cc 147 if (!hdc_) {
148 hdc_ = CreateCompatibleDC(NULL);
149 InitializeDC(hdc_);
150 old_hbitmap_ = static_cast<HBITMAP>(SelectObject(hdc_, hbitmap_));
154 return hdc_;
158 SkASSERT(hdc_);
159 SelectObject(hdc_, old_hbitmap_);
160 DeleteDC(hdc_);
161 hdc_ = NULL;
167 return hdc_ != NULL
    [all...]
vector_platform_device_emf_win.cc 104 hdc_(dc),
117 return hdc_;
337 LoadTransformToDC(hdc_, actual_transform);
342 LoadTransformToDC(hdc_, transform_);
351 LoadTransformToDC(hdc_, identity);
356 LoadTransformToDC(hdc_, transform_);
488 && setup.useGDI(hdc_, paint)) {
491 useDrawPath = !EnsureExtTextOut(hdc_, SkScalarRound(x),
529 && setup.useGDI(hdc_, paint)) {
539 useDrawText = !EnsureExtTextOut(hdc_, startX, startY
    [all...]
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.cc 168 Emf::Emf() : emf_(NULL), hdc_(NULL), page_count_(0) {
172 DCHECK(!hdc_);
178 DCHECK(!emf_ && !hdc_);
179 hdc_ = CreateEnhMetaFile(NULL, metafile_path.value().c_str(), NULL, NULL);
180 DCHECK(hdc_);
181 return hdc_ != NULL;
185 DCHECK(!emf_ && !hdc_);
192 DCHECK(!emf_ && !hdc_);
193 hdc_ = CreateEnhMetaFile(NULL, NULL, NULL, NULL);
194 DCHECK(hdc_);
    [all...]
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 749 milliseconds