Lines Matching refs:dwFontStyles
23 uint32_t dwFontStyles, in LoadFont() argument
30 return pFontMgr->GetFontByCodePage(wCodePage, dwFontStyles, pszFontFamily); in LoadFont()
33 if (!pFont->LoadFontInternal(pszFontFamily, dwFontStyles, wCodePage)) in LoadFont()
94 uint32_t dwFontStyles) in CFGAS_GEFont() argument
114 (dwFontStyles & FX_FONTSTYLE_Bold) ? FXFONT_FW_BOLD : FXFONT_FW_NORMAL; in CFGAS_GEFont()
115 if (dwFontStyles & FX_FONTSTYLE_Italic) in CFGAS_GEFont()
127 uint32_t dwFontStyles, in LoadFontInternal() argument
135 if (dwFontStyles & FX_FONTSTYLE_FixedPitch) in LoadFontInternal()
137 if (dwFontStyles & FX_FONTSTYLE_Serif) in LoadFontInternal()
139 if (dwFontStyles & FX_FONTSTYLE_Symbolic) in LoadFontInternal()
141 if (dwFontStyles & FX_FONTSTYLE_Script) in LoadFontInternal()
143 if (dwFontStyles & FX_FONTSTYLE_Italic) in LoadFontInternal()
145 if (dwFontStyles & FX_FONTSTYLE_Bold) in LoadFontInternal()
147 if (dwFontStyles & FX_FONTSTYLE_ExactMatch) in LoadFontInternal()
150 (dwFontStyles & FX_FONTSTYLE_Bold) ? FXFONT_FW_BOLD : FXFONT_FW_NORMAL; in LoadFontInternal()
226 CFX_RetainPtr<CFGAS_GEFont> CFGAS_GEFont::Derive(uint32_t dwFontStyles, in Derive() argument
229 if (GetFontStyles() == dwFontStyles) in Derive()
231 return pdfium::MakeRetain<CFGAS_GEFont>(pFont, dwFontStyles); in Derive()