Lines Matching refs:m_pInfo
14 explicit CFX_ExternalFontInfo(FPDF_SYSFONTINFO* pInfo) : m_pInfo(pInfo) {} in CFX_ExternalFontInfo()
17 if (m_pInfo->Release) in Release()
18 m_pInfo->Release(m_pInfo); in Release()
23 if (m_pInfo->EnumFonts) { in EnumFontList()
24 m_pInfo->EnumFonts(m_pInfo, pMapper); in EnumFontList()
36 if (m_pInfo->MapFont) in MapFont()
37 return m_pInfo->MapFont(m_pInfo, weight, bItalic, charset, pitch_family, in MapFont()
43 if (m_pInfo->GetFont) in GetFont()
44 return m_pInfo->GetFont(m_pInfo, family); in GetFont()
52 if (m_pInfo->GetFontData) in GetFontData()
53 return m_pInfo->GetFontData(m_pInfo, hFont, table, buffer, size); in GetFontData()
58 if (!m_pInfo->GetFaceName) in GetFaceName()
60 FX_DWORD size = m_pInfo->GetFaceName(m_pInfo, hFont, NULL, 0); in GetFaceName()
64 size = m_pInfo->GetFaceName(m_pInfo, hFont, buffer, size); in GetFaceName()
71 if (m_pInfo->GetFontCharset) { in GetFontCharset()
72 charset = m_pInfo->GetFontCharset(m_pInfo, hFont); in GetFontCharset()
79 if (m_pInfo->DeleteFont) in DeleteFont()
80 m_pInfo->DeleteFont(m_pInfo, hFont); in DeleteFont()
86 FPDF_SYSFONTINFO* const m_pInfo; member in CFX_ExternalFontInfo