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

/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.cpp46 virtual FX_DWORD GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size) FX_OVERRIDE
49 return m_pInfo->GetFontData(m_pInfo, hFont, table, buffer, size);
53 virtual FX_BOOL GetFaceName(void* hFont, CFX_ByteString& name) FX_OVERRIDE
56 FX_DWORD size = m_pInfo->GetFaceName(m_pInfo, hFont, NULL, 0);
59 size = m_pInfo->GetFaceName(m_pInfo, hFont, buffer, size);
65 virtual FX_BOOL GetFontCharset(void* hFont, int& charset) FX_OVERRIDE
68 charset = m_pInfo->GetFontCharset(m_pInfo, hFont);
74 virtual void DeleteFont(void* hFont) FX_OVERRIDE
77 m_pInfo->DeleteFont(m_pInfo, hFont);
128 static unsigned long DefaultGetFontData(struct _FPDF_SYSFONTINFO* pThis, void* hFont, argument
134 DefaultGetFaceName(struct _FPDF_SYSFONTINFO* pThis, void* hFont, char* buffer, unsigned long buf_size) argument
143 DefaultGetFontCharset(struct _FPDF_SYSFONTINFO* pThis, void* hFont) argument
150 DefaultDeleteFont(struct _FPDF_SYSFONTINFO* pThis, void* hFont) argument
[all...]
/external/pdfium/core/include/fxge/
H A Dfx_font.h281 CFX_ByteString GetPSNameFromTT(void* hFont);
303 virtual FX_DWORD GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size) = 0;
304 virtual FX_BOOL GetFaceName(void* hFont, CFX_ByteString& name) = 0;
305 virtual FX_BOOL GetFontCharset(void* hFont, int& charset) = 0;
306 virtual int GetFaceIndex(void* hFont) argument
310 virtual void DeleteFont(void* hFont) = 0;
311 virtual void* RetainFont(void* hFont) argument
328 virtual FX_DWORD GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size);
329 virtual void DeleteFont(void* hFont);
330 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.cpp388 HFONT hFont = (HFONT)::GetStockObject(iFontObject); local
389 if (hFont != NULL) {
391 int iRet = ::GetObject(hFont, sizeof(LOGFONTA), &lf);
427 HFONT hFont = ::CreateFontA(0, 0, 0, 0, 0, 0, 0, 0, iCharSet, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, DEFAULT_PITCH | FF_DONTCARE, csFontName.c_str()); local
428 if (hFont != NULL) {
431 ::GetObjectA(hFont, sizeof(LOGFONTA), &lf);
432 ::DeleteObject(hFont);
449 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.c_str()); local
450 if (hFont != NULL) {
453 ::GetObject(hFont, sizeo
[all...]
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_fontmap.cpp558 CFX_ByteString CFX_FontMapper::GetPSNameFromTT(void* hFont) argument
564 FX_DWORD size = m_pFontInfo->GetFontData(hFont, 0x6e616d65, NULL, 0);
567 m_pFontInfo->GetFontData(hFont, 0x6e616d65, buffer, size);
593 void* hFont = m_pFontInfo->GetFont(name); local
594 if (hFont == NULL) {
596 hFont = m_pFontInfo->MapFont(0, 0, FXFONT_DEFAULT_CHARSET, 0, name, bExact);
597 if (hFont == NULL) {
601 CFX_ByteString new_name = GetPSNameFromTT(hFont);
606 m_pFontInfo->DeleteFont(hFont);
1129 void* hFont local
1470 GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size) argument
1510 DeleteFont(void* hFont) argument
1513 GetFaceName(void* hFont, CFX_ByteString& name) argument
1522 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,
311 HFONT hFont = ::CreateFontA(-10, 0, 0, 0, weight, bItalic, 0, 0, charset, OUT_TT_ONLY_PRECIS, local
358 DeleteFont(void* hFont) argument
362 GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size) argument
373 GetFaceName(void* hFont, CFX_ByteString& name) argument
385 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 173 milliseconds