Searched refs:m_hDC (Results 1 – 6 of 6) sorted by relevance
/external/pdfium/core/src/fxge/win32/ |
D | fx_win32_device.cpp | 61 HDC m_hDC; member in CFX_Win32FontInfo 68 m_hDC = CreateCompatibleDC(NULL); in CFX_Win32FontInfo() 74 DeleteDC(m_hDC); in Release() 162 EnumFontFamiliesExA(m_hDC, &lf, (FONTENUMPROCA)FontEnumProc, (uintptr_t) this, in EnumFontList() 360 HFONT hOldFont = (HFONT)::SelectObject(m_hDC, hFont); in MapFont() 361 ::GetTextFaceA(m_hDC, 100, facebuf); in MapFont() 362 ::SelectObject(m_hDC, hOldFont); in MapFont() 412 HFONT hOldFont = (HFONT)::SelectObject(m_hDC, (HFONT)hFont); in GetFontData() 414 size = ::GetFontData(m_hDC, table, 0, buffer, size); in GetFontData() 415 ::SelectObject(m_hDC, hOldFont); in GetFontData() [all …]
|
D | win32_int.h | 112 void SaveState() override { SaveDC(m_hDC); } in SaveState() 114 RestoreDC(m_hDC, -1); 116 SaveDC(m_hDC); 148 void* GetPlatformSurface() override { return (void*)m_hDC; } in GetPlatformSurface() 176 HDC m_hDC; variable 284 HDC m_hDC; variable 355 void* GetPlatformSurface() override { return (void*)m_hDC; } in GetPlatformSurface() 357 HDC m_hDC; variable
|
D | fx_win32_print.cpp | 23 m_HorzSize = ::GetDeviceCaps(m_hDC, HORZSIZE); in CGdiPrinterDriver() 24 m_VertSize = ::GetDeviceCaps(m_hDC, VERTSIZE); in CGdiPrinterDriver() 282 m_hDC = hDC; in CPSOutput() 300 ExtEscape(m_hDC, PASSTHROUGH, send_len + 2, m_pBuf, 0, NULL); in OutputPS() 314 m_hDC = hDC; in Init() 315 m_HorzSize = ::GetDeviceCaps(m_hDC, HORZSIZE); in Init() 316 m_VertSize = ::GetDeviceCaps(m_hDC, VERTSIZE); in Init() 317 m_Width = ::GetDeviceCaps(m_hDC, HORZRES); in Init() 318 m_Height = ::GetDeviceCaps(m_hDC, VERTRES); in Init() 319 m_nBitsPerPixel = ::GetDeviceCaps(m_hDC, BITSPIXEL); in Init()
|
/external/pdfium/xfa/src/fgas/src/font/ |
D | fx_gdifont.cpp | 96 m_hDC(NULL), in CFX_GdiFont() 104 m_hDC = ::CreateCompatibleDC(NULL); in CFX_GdiFont() 106 FXSYS_assert(m_hDC != NULL); in CFX_GdiFont() 117 ::SelectObject(m_hDC, m_hOldFont); in ~CFX_GdiFont() 120 ::DeleteDC(m_hDC); in ~CFX_GdiFont() 215 m_hOldFont = ::SelectObject(m_hDC, m_hFont); in LoadFont() 216 ::GetOutlineTextMetricsW(m_hDC, sizeof(m_OutlineTM), &m_OutlineTM); in LoadFont() 243 ::SelectObject(m_hDC, m_hFont); in LoadFont() 244 ::GetOutlineTextMetricsW(m_hDC, sizeof(m_OutlineTM), &m_OutlineTM); in LoadFont() 266 ::SelectObject(m_hDC, m_hFont); in LoadFont() [all …]
|
D | fx_gdifont.h | 75 HDC m_hDC; variable
|
/external/pdfium/core/include/fxge/ |
D | fx_ge_win32.h | 87 HDC GetDC() { return m_hDC; } in GetDC() 94 HDC m_hDC; variable
|