Lines Matching refs:hFont
69 uint32_t GetFontData(void* hFont, in GetFontData() argument
75 return m_pInfo->GetFontData(m_pInfo, hFont, table, buffer, size); in GetFontData()
78 bool GetFaceName(void* hFont, ByteString* name) override { in GetFaceName() argument
81 uint32_t size = m_pInfo->GetFaceName(m_pInfo, hFont, nullptr, 0); in GetFaceName()
85 size = m_pInfo->GetFaceName(m_pInfo, hFont, buffer, size); in GetFaceName()
91 bool GetFontCharset(void* hFont, int* charset) override { in GetFontCharset() argument
95 *charset = m_pInfo->GetFontCharset(m_pInfo, hFont); in GetFontCharset()
99 void DeleteFont(void* hFont) override { in DeleteFont() argument
101 m_pInfo->DeleteFont(m_pInfo, hFont); in DeleteFont()
160 void* hFont, in DefaultGetFontData() argument
165 return pDefault->m_pFontInfo->GetFontData(hFont, table, buffer, buf_size); in DefaultGetFontData()
169 void* hFont, in DefaultGetFaceName() argument
174 if (!pDefault->m_pFontInfo->GetFaceName(hFont, &name)) in DefaultGetFaceName()
184 static int DefaultGetFontCharset(struct _FPDF_SYSFONTINFO* pThis, void* hFont) { in DefaultGetFontCharset() argument
187 if (!pDefault->m_pFontInfo->GetFontCharset(hFont, &charset)) in DefaultGetFontCharset()
192 static void DefaultDeleteFont(struct _FPDF_SYSFONTINFO* pThis, void* hFont) { in DefaultDeleteFont() argument
194 pDefault->m_pFontInfo->DeleteFont(hFont); in DefaultDeleteFont()