HomeSort by relevance Sort by last modified time
    Searched refs:hFont (Results 1 - 14 of 14) sorted by null

  /external/pdfium/core/src/fxge/android/
fx_android_font.cpp 53 FX_DWORD CFX_AndroidFontInfo::GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size)
55 if (!hFont) {
58 return ((IFPF_Font*)hFont)->GetFontData(table, buffer, size);
60 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)
70 if (!hFont) {
73 charset = ((IFPF_Font*)hFont)->GetCharset();
76 void CFX_AndroidFontInfo::DeleteFont(void* hFont)
    [all...]
fx_android_font.h 26 virtual FX_DWORD GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size);
27 virtual FX_BOOL GetFaceName(void* hFont, CFX_ByteString& name);
28 virtual FX_BOOL GetFontCharset(void* hFont, int& charset);
30 virtual void DeleteFont(void* hFont);
31 virtual void* RetainFont(void* hFont);
  /external/pdfium/fpdfsdk/src/
fpdf_sysfontinfo.cpp 46 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,
    [all...]
  /external/pdfium/public/
fpdf_sysfontinfo.h 133 * hFont - Font handle returned by MapFont or GetFont method
142 unsigned long (*GetFontData)(struct _FPDF_SYSFONTINFO* pThis, void* hFont,
154 * hFont - Font handle returned by MapFont or GetFont method
161 unsigned long (*GetFaceName)(struct _FPDF_SYSFONTINFO* pThis, void* hFont, char* buffer, unsigned long buf_size);
172 * hFont - Font handle returned by MapFont or GetFont method
176 int (*GetFontCharset)(struct _FPDF_SYSFONTINFO* pThis, void* hFont);
187 * hFont - Font handle returned by MapFont or GetFont method
191 void (*DeleteFont)(struct _FPDF_SYSFONTINFO* pThis, void* hFont);
  /external/pdfium/core/src/fxge/ge/
fx_ge_fontmap.cpp 558 CFX_ByteString CFX_FontMapper::GetPSNameFromTT(void* hFont)
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);
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);
    [all...]
  /external/pdfium/core/include/fxge/
fx_font.h 281 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)
310 virtual void DeleteFont(void* hFont) = 0;
311 virtual void* RetainFont(void* hFont)
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_ByteString& name)
    [all...]
  /external/pdfium/core/src/fxge/win32/
fx_win32_device.cpp 31 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);
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)
    [all...]
  /external/pdfium/core/src/fpdfdoc/
doc_form.cpp 388 HFONT hFont = (HFONT)::GetStockObject(iFontObject);
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());
428 if (hFont != NULL) {
431 ::GetObjectA(hFont, sizeof(LOGFONTA), &lf);
432 ::DeleteObject(hFont);
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_edit/
fpdf_edit_doc.cpp 246 HGDIOBJ hFont = CreateFontIndirectA(pLogFont);
248 hFont = SelectObject(hDC, hFont);
251 hFont = SelectObject(hDC, hFont);
252 DeleteObject(hFont);
425 hFont = SelectObject(hDC, hFont);
426 DeleteObject(hFont);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mlang.h     [all...]
ocidl.h     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
  /prebuilts/tools/windows/swt/
swt.jar 
  /prebuilts/tools/windows-x86_64/swt/
swt.jar 

Completed in 322 milliseconds