Searched refs:m_pFontInfo (Results 1 – 3 of 3) sorted by relevance
/external/pdfium/core/fxge/ |
D | cfx_fontmapper.cpp | 294 m_pFontInfo = std::move(pFontInfo); in SetSystemFontInfo() 298 if (!m_pFontInfo) in GetPSNameFromTT() 301 uint32_t size = m_pFontInfo->GetFontData(hFont, kTableNAME, nullptr, 0); in GetPSNameFromTT() 308 m_pFontInfo->GetFontData(hFont, kTableNAME, buffer_ptr, size); in GetPSNameFromTT() 314 if (!m_pFontInfo) in AddInstalledFont() 326 void* hFont = m_pFontInfo->GetFont(name.c_str()); in AddInstalledFont() 328 hFont = m_pFontInfo->MapFont(0, 0, FX_CHARSET_Default, 0, name.c_str()); in AddInstalledFont() 336 m_pFontInfo->DeleteFont(hFont); in AddInstalledFont() 343 if (!m_pFontInfo || m_bListLoaded) in LoadInstalledFonts() 346 m_pFontInfo->EnumFontList(this); in LoadInstalledFonts() [all …]
|
D | cfx_fontmapper.h | 26 IFX_SystemFontInfo* GetSystemFontInfo() { return m_pFontInfo.get(); } in GetSystemFontInfo() 80 std::unique_ptr<IFX_SystemFontInfo> m_pFontInfo; variable
|
/external/pdfium/fpdfsdk/ |
D | fpdf_sysfontinfo.cpp | 129 UnownedPtr<IFX_SystemFontInfo> m_pFontInfo; member 134 delete pDefault->m_pFontInfo.Release(); in DefaultRelease() 139 pDefault->m_pFontInfo->EnumFontList((CFX_FontMapper*)pMapper); in DefaultEnumFonts() 150 return pDefault->m_pFontInfo->MapFont(weight, !!bItalic, charset, in DefaultMapFont() 156 return pDefault->m_pFontInfo->GetFont(family); in DefaultGetFont() 165 return pDefault->m_pFontInfo->GetFontData(hFont, table, buffer, buf_size); in DefaultGetFontData() 174 if (!pDefault->m_pFontInfo->GetFaceName(hFont, &name)) in DefaultGetFaceName() 187 if (!pDefault->m_pFontInfo->GetFontCharset(hFont, &charset)) in DefaultGetFontCharset() 194 pDefault->m_pFontInfo->DeleteFont(hFont); in DefaultDeleteFont() 214 pFontInfoExt->m_pFontInfo = pFontInfo.release(); in FPDF_GetDefaultSystemFontInfo()
|