Searched defs:hFont (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderThemeChromiumFontProviderWin.cpp93 HFONT hFont = CreateFontIndirect(&font); local
94 if (hFont) {
97 HGDIOBJ hObject = SelectObject(hdc, hFont);
103 DeleteObject(hFont);
/external/pdfium/core/src/fxge/android/
H A Dfx_android_font.cpp53 FX_DWORD CFX_AndroidFontInfo::GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size) argument
55 if (!hFont) {
58 return ((IFPF_Font*)hFont)->GetFontData(table, buffer, size);
60 FX_BOOL CFX_AndroidFontInfo::GetFaceName(void* hFont, CFX_ByteString& name) argument
62 if (!hFont) {
65 name = ((IFPF_Font*)hFont)->GetFamilyName();
68 FX_BOOL CFX_AndroidFontInfo::GetFontCharset(void* hFont, int& charset) argument
70 if (!hFont) {
73 charset = ((IFPF_Font*)hFont)->GetCharset();
76 void CFX_AndroidFontInfo::DeleteFont(void* hFont) argument
83 RetainFont(void* hFont) argument
[all...]
/external/pdfium/fpdfsdk/src/
H A Dfpdf_sysfontinfo.cpp45 virtual FX_DWORD GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size) argument
48 return m_pInfo->GetFontData(m_pInfo, hFont, table, buffer, size);
52 virtual FX_BOOL GetFaceName(void* hFont, CFX_ByteString& name) argument
55 FX_DWORD size = m_pInfo->GetFaceName(m_pInfo, hFont, NULL, 0);
58 size = m_pInfo->GetFaceName(m_pInfo, hFont, buffer, size);
64 virtual FX_BOOL GetFontCharset(void* hFont, int& charset) argument
67 charset = m_pInfo->GetFontCharset(m_pInfo, hFont);
73 virtual void DeleteFont(void* hFont) argument
76 m_pInfo->DeleteFont(m_pInfo, hFont);
119 static unsigned long DefaultGetFontData(struct _FPDF_SYSFONTINFO* pThis, void* hFont, argument
125 DefaultGetFaceName(struct _FPDF_SYSFONTINFO* pThis, void* hFont, char* buffer, unsigned long buf_size) argument
134 DefaultGetFontCharset(struct _FPDF_SYSFONTINFO* pThis, void* hFont) argument
141 DefaultDeleteFont(struct _FPDF_SYSFONTINFO* pThis, void* hFont) argument
[all...]
/external/chromium_org/third_party/npapi/npspy/windows/
H A Dgui_main.cpp172 HFONT hFont = GetStockFont(ANSI_FIXED_FONT); local
173 SetWindowFont(GetDlgItem(hWnd, IDC_MAIN_OUTPUT), hFont, FALSE); local
H A Ddirpick.cpp535 HFONT hFont = (HFONT)SendMessage(hWnd, WM_GETFONT, 0, 0L); local
536 if(hFont == NULL)
537 hFont = GetStockFont(SYSTEM_FONT);
539 HFONT hFontOld = SelectFont(hDC, hFont);
/external/pdfium/core/include/fxge/
H A Dfx_font.h281 CFX_ByteString GetPSNameFromTT(void* hFont);
302 virtual FX_DWORD GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size) = 0;
303 virtual FX_BOOL GetFaceName(void* hFont, CFX_ByteString& name) = 0;
304 virtual FX_BOOL GetFontCharset(void* hFont, int& charset) = 0;
305 virtual int GetFaceIndex(void* hFont) argument
309 virtual void DeleteFont(void* hFont) = 0;
310 virtual void* RetainFont(void* hFont) argument
325 virtual FX_DWORD GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size);
326 virtual void DeleteFont(void* hFont);
327 virtual FX_BOOL GetFaceName(void* hFont, CFX_ByteStrin
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_edit/
H A Dfpdf_edit_doc.cpp246 HGDIOBJ hFont = CreateFontIndirectA(pLogFont); local
248 hFont = SelectObject(hDC, hFont);
251 hFont = SelectObject(hDC, hFont);
252 DeleteObject(hFont);
425 hFont = SelectObject(hDC, hFont);
426 DeleteObject(hFont);
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_form.cpp410 HFONT hFont = (HFONT)::GetStockObject(iFontObject); local
411 if (hFont != NULL) {
413 int iRet = ::GetObject(hFont, sizeof(LOGFONTA), &lf);
449 HFONT hFont = ::CreateFontA(0, 0, 0, 0, 0, 0, 0, 0, iCharSet, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, DEFAULT_PITCH | FF_DONTCARE, (FX_LPCSTR)csFontName); local
450 if (hFont != NULL) {
453 ::GetObjectA(hFont, sizeof(LOGFONTA), &lf);
454 ::DeleteObject(hFont);
471 HFONT hFont = ::CreateFontW(0, 0, 0, 0, 0, 0, 0, 0, iCharSet, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, DEFAULT_PITCH | FF_DONTCARE, csFontName); local
472 if (hFont != NULL) {
475 ::GetObject(hFont, sizeo
[all...]
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_fontmap.cpp576 CFX_ByteString CFX_FontMapper::GetPSNameFromTT(void* hFont) argument
582 FX_DWORD size = m_pFontInfo->GetFontData(hFont, 0x6e616d65, NULL, 0);
588 m_pFontInfo->GetFontData(hFont, 0x6e616d65, buffer, size);
614 void* hFont = m_pFontInfo->GetFont(name); local
615 if (hFont == NULL) {
617 hFont = m_pFontInfo->MapFont(0, 0, FXFONT_DEFAULT_CHARSET, 0, name, bExact);
618 if (hFont == NULL) {
622 CFX_ByteString new_name = GetPSNameFromTT(hFont);
627 m_pFontInfo->DeleteFont(hFont);
1165 void* hFont local
1502 GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size) argument
1542 DeleteFont(void* hFont) argument
1545 GetFaceName(void* hFont, CFX_ByteString& name) argument
1554 GetFontCharset(void* hFont, int& charset) argument
[all...]
/external/pdfium/core/src/fxge/win32/
H A Dfx_win32_device.cpp31 virtual FX_DWORD GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size);
32 virtual void DeleteFont(void* hFont);
33 virtual FX_BOOL GetFaceName(void* hFont, CFX_ByteString& name);
34 virtual FX_BOOL GetFontCharset(void* hFont, int& charset);
62 HFONT hFont = CreateFontIndirectA(plf); local
64 FX_DWORD font_size = GetFontData(hFont, 0, NULL, 0);
67 GetFontData(hFont, 0, (FX_BYTE*)(&lVersion), sizeof(FX_DWORD));
78 DeleteFont(hFont);
83 HFONT hFont = CreateFontIndirectA(plf); local
85 FX_DWORD font_size = GetFontData(hFont,
318 HFONT hFont = ::CreateFontA(-10, 0, 0, 0, weight, bItalic, 0, 0, charset, OUT_TT_ONLY_PRECIS, local
363 DeleteFont(void* hFont) argument
367 GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size) argument
378 GetFaceName(void* hFont, CFX_ByteString& name) argument
390 GetFontCharset(void* hFont, int& charset) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 3030 milliseconds