HomeSort by relevance Sort by last modified time
    Searched full:hfont (Results 1 - 25 of 37) sorted by null

1 2

  /external/pdfium/core/src/fxge/android/
fx_android_font.cpp 52 FX_DWORD CFX_AndroidFontInfo::GetFontData(void* hFont,
56 if (!hFont) {
59 return ((IFPF_Font*)hFont)->GetFontData(table, buffer, size);
61 FX_BOOL CFX_AndroidFontInfo::GetFaceName(void* hFont, CFX_ByteString& name) {
62 if (!hFont) {
65 name = ((IFPF_Font*)hFont)->GetFamilyName();
68 FX_BOOL CFX_AndroidFontInfo::GetFontCharset(void* hFont, int& charset) {
69 if (!hFont) {
72 charset = ((IFPF_Font*)hFont)->GetCharset();
75 void CFX_AndroidFontInfo::DeleteFont(void* hFont) {
    [all...]
fx_android_font.h 27 virtual FX_DWORD GetFontData(void* hFont,
31 virtual FX_BOOL GetFaceName(void* hFont, CFX_ByteString& name);
32 virtual FX_BOOL GetFontCharset(void* hFont, int& charset);
34 virtual void DeleteFont(void* hFont);
35 virtual void* RetainFont(void* hFont);
  /external/pdfium/fpdfsdk/src/
fpdf_sysfontinfo.cpp 48 FX_DWORD GetFontData(void* hFont,
53 return m_pInfo->GetFontData(m_pInfo, hFont, table, buffer, size);
57 FX_BOOL GetFaceName(void* hFont, CFX_ByteString& name) override {
60 FX_DWORD size = m_pInfo->GetFaceName(m_pInfo, hFont, NULL, 0);
64 size = m_pInfo->GetFaceName(m_pInfo, hFont, buffer, size);
70 FX_BOOL GetFontCharset(void* hFont, int& charset) override {
72 charset = m_pInfo->GetFontCharset(m_pInfo, hFont);
78 void DeleteFont(void* hFont) override {
80 m_pInfo->DeleteFont(m_pInfo, hFont);
137 void* hFont,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
custcntl.h 47 typedef INT (CALLBACK *LPFNCCSIZETOTEXTA)(DWORD flStyle,DWORD flExtStyle,HFONT hfont,LPSTR pszText);
48 typedef INT (CALLBACK *LPFNCCSIZETOTEXTW)(DWORD flStyle,DWORD flExtStyle,HFONT hfont,LPWSTR pszText);
mlang.h     [all...]
windowsx.h 41 #define DeleteFont(hfont) DeleteObject((HGDIOBJ)(HFONT)(hfont))
42 #define SelectFont(hdc,hfont) ((HFONT)SelectObject((hdc),(HGDIOBJ)(HFONT)(hfont)))
43 #define GetStockFont(i) ((HFONT)GetStockObject(i))
62 #define SetWindowFont(hwnd,hfont,fRedraw) FORWARD_WM_SETFONT((hwnd),(hfont),(fRedraw),SNDMSG
    [all...]
windowsx.h16 44 #define DeleteFont(hfont) DeleteObject((HGDIOBJ)(HFONT)(hfont))
45 #define SelectFont(hdc,hfont) ((HFONT)SelectObject((hdc),(HGDIOBJ)(HFONT)(hfont)))
46 #define GetStockFont(i) ((HFONT)GetStockObject(i))
76 #define SetWindowFont(hwnd,hfont,fRedraw) FORWARD_WM_SETFONT((hwnd),(hfont),(fRedraw),SendMessage
    [all...]
wownt32.h 35 #define HFONT_32(h16) ((HFONT) (WOWHandle32(h16,WOW_TYPE_HFONT)))
  /external/icu/icu4c/source/samples/layout/
GDIFontInstance.h 55 HFONT fFont;
79 HFONT getFont() const;
106 inline HFONT GDIFontInstance::getFont() const
  /external/pdfium/core/src/fxge/ge/
fx_ge_fontmap.cpp 706 CFX_ByteString CFX_FontMapper::GetPSNameFromTT(void* hFont) {
710 FX_DWORD size = m_pFontInfo->GetFontData(hFont, kTableNAME, nullptr, 0);
717 m_pFontInfo->GetFontData(hFont, kTableNAME, buffer_ptr, size);
740 void* hFont = m_pFontInfo->GetFont(name);
741 if (!hFont) {
743 hFont =
745 if (!hFont) {
749 CFX_ByteString new_name = GetPSNameFromTT(hFont);
754 m_pFontInfo->DeleteFont(hFont);
1084 void* hFont = m_pFontInfo->MapFont(weight, bItalic, Charset, PitchFamily
    [all...]
  /external/libchrome/base/win/
scoped_gdi_object.h 39 typedef ScopedGDIObject<HFONT> ScopedHFONT;
  /external/pdfium/core/include/fxge/
fx_font.h 333 CFX_ByteString GetPSNameFromTT(void* hFont);
373 virtual FX_DWORD GetFontData(void* hFont,
377 virtual FX_BOOL GetFaceName(void* hFont, CFX_ByteString& name) = 0;
378 virtual FX_BOOL GetFontCharset(void* hFont, int& charset) = 0;
379 virtual int GetFaceIndex(void* hFont) { return 0; }
380 virtual void DeleteFont(void* hFont) = 0;
381 virtual void* RetainFont(void* hFont) { return NULL; }
409 FX_DWORD GetFontData(void* hFont,
413 void DeleteFont(void* hFont) override;
414 FX_BOOL GetFaceName(void* hFont, CFX_ByteString& name) override
    [all...]
  /external/pdfium/public/
fpdf_sysfontinfo.h 155 * hFont - Font handle returned by MapFont or GetFont method
168 void* hFont,
182 * hFont - Font handle returned by MapFont or GetFont method
192 void* hFont,
205 * hFont - Font handle returned by MapFont or GetFont method
209 int (*GetFontCharset)(struct _FPDF_SYSFONTINFO* pThis, void* hFont);
220 * hFont - Font handle returned by MapFont or GetFont method
224 void (*DeleteFont)(struct _FPDF_SYSFONTINFO* pThis, void* hFont);
  /external/opencv3/samples/directx/
d3d9_interop.cpp 248 HFONT hFont = (HFONT)::GetStockObject(SYSTEM_FONT);
250 HFONT hOldFont = (HFONT)::SelectObject(hDC, hFont);
d3d9ex_interop.cpp 249 HFONT hFont = (HFONT)::GetStockObject(SYSTEM_FONT);
251 HFONT hOldFont = (HFONT)::SelectObject(hDC, hFont);
  /external/pdfium/core/src/fxge/win32/
fx_win32_device.cpp 45 FX_DWORD GetFontData(void* hFont,
49 FX_BOOL GetFaceName(void* hFont, CFX_ByteString& name) override;
50 FX_BOOL GetFontCharset(void* hFont, int& charset) override;
51 void DeleteFont(void* hFont) override;
81 HFONT hFont = CreateFontIndirectA(plf);
83 FX_DWORD font_size = GetFontData(hFont, 0, NULL, 0);
86 GetFontData(hFont, 0, (uint8_t*)(&lVersion), sizeof(FX_DWORD));
97 DeleteFont(hFont);
101 HFONT hFont = CreateFontIndirectA(plf)
    [all...]
  /external/harfbuzz_ng/src/
hb-uniscribe.h 40 HB_EXTERN HFONT
hb-directwrite.cc 228 HFONT hfont; member in struct:hb_directwrite_shaper_font_data_t
266 data->hfont = CreateFontIndirectW (&data->log_font);
267 if (unlikely (!data->hfont))
274 if (!SelectObject (data->hdc, data->hfont))
289 if (data->hfont)
290 DeleteObject (data->hfont);
302 HFONT
307 return font_data->hfont;
hb-uniscribe.cc 487 HFONT hfont; member in struct:hb_uniscribe_shaper_font_data_t
536 data->hfont = CreateFontIndirectW (&data->log_font);
537 if (unlikely (!data->hfont)) {
543 if (!SelectObject (data->hdc, data->hfont)) {
557 if (data->hfont)
558 DeleteObject (data->hfont);
572 HFONT
577 return font_data->hfont;
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/
wintypes.py 73 HFONT = HANDLE
172 'HCOLORSPACE', 'HDC', 'HDESK', 'HDWP', 'HENHMETAFILE', 'HFONT',
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/
wintypes.py 73 HFONT = HANDLE
172 'HCOLORSPACE', 'HDC', 'HDESK', 'HDWP', 'HENHMETAFILE', 'HFONT',
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 73 HFONT = HANDLE
172 'HCOLORSPACE', 'HDC', 'HDESK', 'HDWP', 'HENHMETAFILE', 'HFONT',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 73 HFONT = HANDLE
172 'HCOLORSPACE', 'HDC', 'HDESK', 'HDWP', 'HENHMETAFILE', 'HFONT',
  /external/pdfium/xfa/src/fgas/src/font/
fx_gdifont.h 74 HFONT m_hFont;
  /external/skia/src/ports/
SkFontHost_win.cpp 216 HFONT font = CreateFontIndirect(&lf);
219 HFONT savefont = (HFONT)SelectObject(deviceContext, font);
436 void init(HFONT font, const XFORM& xform) {
446 HFONT fFont;
565 HFONT fSavefont;
566 HFONT fFont;
661 fSavefont = (HFONT)SelectObject(fDDC, fFont);
    [all...]

Completed in 2146 milliseconds

1 2