OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:screen_dc
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/ui/gfx/
color_profile_win.cc
15
HDC
screen_dc
= GetDC(NULL);
local
19
BOOL res = GetICMProfile(
screen_dc
, &path_len, path);
20
ReleaseDC(NULL,
screen_dc
);
platform_font_win.cc
241
base::win::ScopedGetDC
screen_dc
(NULL);
242
base::win::ScopedSelectObject scoped_font(
screen_dc
, font);
243
gfx::ScopedSetMapMode mode(
screen_dc
, MM_TEXT);
244
GetTextMetrics(
screen_dc
, &font_metrics);
301
base::win::ScopedGetDC
screen_dc
(NULL);
302
base::win::ScopedSelectObject font(
screen_dc
, hfont_);
303
gfx::ScopedSetMapMode mode(
screen_dc
, MM_TEXT);
308
GetTextExtentPoint32(
screen_dc
,
/external/chromium_org/sandbox/win/sandbox_poc/pocdll/
spyware.cc
54
HDC
screen_dc
= ::GetDC(NULL);
local
55
COLORREF pixel_color = ::GetPixel(
screen_dc
, 0, 0);
59
if (::GetPixel(
screen_dc
, x, y) != pixel_color) {
/external/chromium_org/ui/base/dragdrop/
drag_utils_win.cc
43
base::win::ScopedGetDC
screen_dc
(NULL);
48
CreateDIBSection(
screen_dc
, reinterpret_cast<BITMAPINFO*>(&header),
/external/chromium_org/ui/gfx/win/
dpi.cc
75
base::win::ScopedGetDC
screen_dc
(NULL);
79
dpi_x = GetDeviceCaps(
screen_dc
, LOGPIXELSX);
80
dpi_y = GetDeviceCaps(
screen_dc
, LOGPIXELSY);
/external/chromium_org/content/browser/renderer_host/
backing_store_win.cc
58
HDC
screen_dc
= ::GetDC(NULL);
local
59
color_depth_ = ::GetDeviceCaps(
screen_dc
, BITSPIXEL);
65
hdc_ = CreateCompatibleDC(
screen_dc
);
66
ReleaseDC(NULL,
screen_dc
);
Completed in 273 milliseconds