Home
last modified time | relevance | path

Searched refs:m_pFontInfo (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/core/fxge/
Dcfx_fontmapper.cpp270 m_pFontInfo = std::move(pFontInfo); in SetSystemFontInfo()
275 m_pFontInfo->GetFontData( in GetChecksumFromTT()
286 uint32_t size = m_pFontInfo->GetFontData(hFont, kTableNAME, {}); in GetPSNameFromTT()
291 uint32_t bytes_read = m_pFontInfo->GetFontData(hFont, kTableNAME, buffer); in GetPSNameFromTT()
296 if (!m_pFontInfo) in AddInstalledFont()
308 void* hFont = m_pFontInfo->GetFont(name.c_str()); in AddInstalledFont()
310 hFont = m_pFontInfo->MapFont(0, 0, FX_CHARSET_Default, 0, name.c_str()); in AddInstalledFont()
318 m_pFontInfo->DeleteFont(hFont); in AddInstalledFont()
325 if (!m_pFontInfo || m_bListLoaded) in LoadInstalledFonts()
328 m_pFontInfo->EnumFontList(this); in LoadInstalledFonts()
[all …]
Dcfx_fontmapper.h107 std::unique_ptr<SystemFontInfoIface> m_pFontInfo; variable
/external/pdfium/fpdfsdk/
Dfpdf_sysfontinfo.cpp145 UnownedPtr<SystemFontInfoIface> m_pFontInfo; member
150 delete pDefault->m_pFontInfo.Release(); in DefaultRelease()
155 pDefault->m_pFontInfo->EnumFontList(static_cast<CFX_FontMapper*>(pMapper)); in DefaultEnumFonts()
166 return pDefault->m_pFontInfo->MapFont(weight, !!bItalic, charset, in DefaultMapFont()
172 return pDefault->m_pFontInfo->GetFont(family); in DefaultGetFont()
181 return pDefault->m_pFontInfo->GetFontData(hFont, table, {buffer, buf_size}); in DefaultGetFontData()
190 if (!pDefault->m_pFontInfo->GetFaceName(hFont, &name)) in DefaultGetFaceName()
203 if (!pDefault->m_pFontInfo->GetFontCharset(hFont, &charset)) in DefaultGetFontCharset()
210 pDefault->m_pFontInfo->DeleteFont(hFont); in DefaultDeleteFont()
230 pFontInfoExt->m_pFontInfo = pFontInfo.release(); in FPDF_GetDefaultSystemFontInfo()