Home
last modified time | relevance | path

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

/external/pdfium/core/fxge/android/
Dcfpf_skiafont.cpp183 CFPF_SkiaFontDescriptor* pFontDes, in InitFont() argument
187 if (!pFontMgr || !pFontDes) in InitFont()
190 switch (pFontDes->GetType()) { in InitFont()
192 CFPF_SkiaPathFont* pFont = (CFPF_SkiaPathFont*)pFontDes; in InitFont()
197 CFPF_SkiaFileFont* pFont = (CFPF_SkiaFileFont*)pFontDes; in InitFont()
202 CFPF_SkiaBufferFont* pFont = (CFPF_SkiaBufferFont*)pFontDes; in InitFont()
216 m_pFontDes = pFontDes; in InitFont()
Dcfpf_skiafontmgr.cpp310 CFPF_SkiaPathFont* pFontDes = static_cast<CFPF_SkiaPathFont*>(*it); in CreateFont() local
311 if (!(pFontDes->m_dwCharsets & FPF_SkiaGetCharset(uCharset))) in CreateFont()
314 uint32_t dwSysFontName = FPF_SKIANormalizeFontName(pFontDes->m_pFamily); in CreateFont()
318 if ((dwStyle & FXFONT_BOLD) == (pFontDes->m_dwStyle & FXFONT_BOLD)) in CreateFont()
320 if ((dwStyle & FXFONT_ITALIC) == (pFontDes->m_dwStyle & FXFONT_ITALIC)) in CreateFont()
323 (pFontDes->m_dwStyle & FXFONT_FIXED_PITCH)) { in CreateFont()
326 if ((dwStyle & FXFONT_SERIF) == (pFontDes->m_dwStyle & FXFONT_SERIF)) in CreateFont()
328 if ((dwStyle & FXFONT_SCRIPT) == (pFontDes->m_dwStyle & FXFONT_SCRIPT)) in CreateFont()
340 if (bMatchedName || pFontDes->m_iGlyphNum > nGlyphNum) { in CreateFont()
342 nGlyphNum = pFontDes->m_iGlyphNum; in CreateFont()
Dcfpf_skiafont.h39 CFPF_SkiaFontDescriptor* pFontDes,