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

  /external/pdfium/core/fxge/android/
cfx_androidfontinfo.cpp 56 uint32_t CFX_AndroidFontInfo::GetFontData(void* hFont,
60 if (!hFont)
62 return static_cast<CFPF_SkiaFont*>(hFont)->GetFontData(table, buffer, size);
65 bool CFX_AndroidFontInfo::GetFaceName(void* hFont, ByteString* name) {
66 if (!hFont)
69 *name = static_cast<CFPF_SkiaFont*>(hFont)->GetFamilyName();
73 bool CFX_AndroidFontInfo::GetFontCharset(void* hFont, int* charset) {
74 if (!hFont)
77 *charset = static_cast<CFPF_SkiaFont*>(hFont)->GetCharset();
81 void CFX_AndroidFontInfo::DeleteFont(void* hFont) {
    [all...]
cfx_androidfontinfo.h 32 uint32_t GetFontData(void* hFont,
36 bool GetFaceName(void* hFont, ByteString* name) override;
37 bool GetFontCharset(void* hFont, int* charset) override;
38 void DeleteFont(void* hFont) override;
  /external/pdfium/core/fxge/
ifx_systemfontinfo.h 39 virtual uint32_t GetFontData(void* hFont,
43 virtual bool GetFaceName(void* hFont, ByteString* name) = 0;
44 virtual bool GetFontCharset(void* hFont, int* charset) = 0;
45 virtual int GetFaceIndex(void* hFont);
46 virtual void DeleteFont(void* hFont) = 0;
cfx_folderfontinfo.h 39 uint32_t GetFontData(void* hFont,
43 void DeleteFont(void* hFont) override;
44 bool GetFaceName(void* hFont, ByteString* name) override;
45 bool GetFontCharset(void* hFont, int* charset) override;
cfx_fontmapper.cpp 297 ByteString CFX_FontMapper::GetPSNameFromTT(void* hFont) {
301 uint32_t size = m_pFontInfo->GetFontData(hFont, kTableNAME, nullptr, 0);
308 m_pFontInfo->GetFontData(hFont, kTableNAME, buffer_ptr, size);
326 void* hFont = m_pFontInfo->GetFont(name.c_str());
327 if (!hFont) {
328 hFont = m_pFontInfo->MapFont(0, 0, FX_CHARSET_Default, 0, name.c_str());
329 if (!hFont)
333 ByteString new_name = GetPSNameFromTT(hFont);
336 m_pFontInfo->DeleteFont(hFont);
610 void* hFont = m_pFontInfo->MapFont(weight, bItalic, Charset, PitchFamily
    [all...]
cfx_fontmapper.h 54 ByteString GetPSNameFromTT(void* hFont);
61 FXFT_Face GetCachedTTCFace(void* hFont,
65 FXFT_Face GetCachedFace(void* hFont,
cfx_folderfontinfo.cpp 334 uint32_t CFX_FolderFontInfo::GetFontData(void* hFont,
338 if (!hFont)
341 const FontFaceInfo* pFont = static_cast<FontFaceInfo*>(hFont);
374 void CFX_FolderFontInfo::DeleteFont(void* hFont) {}
376 bool CFX_FolderFontInfo::GetFaceName(void* hFont, ByteString* name) {
377 if (!hFont)
379 *name = static_cast<FontFaceInfo*>(hFont)->m_FaceName;
383 bool CFX_FolderFontInfo::GetFontCharset(void* hFont, int* charset) {
fx_ge_fontmap.cpp 63 int IFX_SystemFontInfo::GetFaceIndex(void* hFont) {
  /external/pdfium/fpdfsdk/
fpdf_sysfontinfo.cpp 69 uint32_t GetFontData(void* hFont,
75 return m_pInfo->GetFontData(m_pInfo, hFont, table, buffer, size);
78 bool GetFaceName(void* hFont, ByteString* name) override {
81 uint32_t size = m_pInfo->GetFaceName(m_pInfo, hFont, nullptr, 0);
85 size = m_pInfo->GetFaceName(m_pInfo, hFont, buffer, size);
91 bool GetFontCharset(void* hFont, int* charset) override {
95 *charset = m_pInfo->GetFontCharset(m_pInfo, hFont);
99 void DeleteFont(void* hFont) override {
101 m_pInfo->DeleteFont(m_pInfo, hFont);
160 void* hFont,
    [all...]
  /external/pdfium/public/
fpdf_sysfontinfo.h 153 * hFont - Font handle returned by MapFont or GetFont method
166 void* hFont,
180 * hFont - Font handle returned by MapFont or GetFont method
190 void* hFont,
203 * hFont - Font handle returned by MapFont or GetFont method
207 int (*GetFontCharset)(struct _FPDF_SYSFONTINFO* pThis, void* hFont);
218 * hFont - Font handle returned by MapFont or GetFont method
222 void (*DeleteFont)(struct _FPDF_SYSFONTINFO* pThis, void* hFont);
  /external/pdfium/core/fxge/win32/
fx_win32_device.cpp 345 uint32_t GetFontData(void* hFont,
349 bool GetFaceName(void* hFont, ByteString* name) override;
350 bool GetFontCharset(void* hFont, int* charset) override;
351 void DeleteFont(void* hFont) override;
382 HFONT hFont = CreateFontIndirectA(plf);
384 uint32_t font_size = GetFontData(hFont, 0, nullptr, 0);
387 GetFontData(hFont, 0, (uint8_t*)(&lVersion), sizeof(uint32_t));
398 DeleteFont(hFont);
403 HFONT hFont = CreateFontIndirectA(plf)
    [all...]
fx_win32_print.cpp 29 ScopedState(HDC hDC, HFONT hFont) : m_hDC(hDC) {
31 m_hFont = SelectObject(m_hDC, hFont);
35 HGDIOBJ hFont = SelectObject(m_hDC, m_hFont);
36 DeleteObject(hFont);
240 HFONT hFont = CreateFontIndirect(&lf);
241 if (!hFont)
244 ScopedState state(m_hDC, hFont);
  /external/pdfium/core/fpdfapi/parser/
cpdf_document.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mlang.h     [all...]
ocidl.h     [all...]
  /external/pdfium/xfa/fgas/font/
cfgas_fontmgr.cpp 675 void* hFont = pSystemFontInfo->MapFont(
677 if (!hFont)
680 uint32_t dwFileSize = pSystemFontInfo->GetFontData(hFont, 0, nullptr, 0);
685 dwFileSize = pSystemFontInfo->GetFontData(hFont, 0, pBuffer, dwFileSize);
    [all...]
  /external/python/cpython2/PC/bdist_wininst/
install.c     [all...]
  /external/python/cpython3/PC/bdist_wininst/
install.c     [all...]
  /prebuilts/tools/windows/swt/
swt.jar 
  /prebuilts/tools/windows-x86_64/swt/
swt.jar 

Completed in 778 milliseconds