Home
last modified time | relevance | path

Searched refs:pFontStyle (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/xfa/src/fxfa/src/app/
Dxfa_textlayout.cpp136 IFDE_CSSFontStyle* pFontStyle = pStyle->GetFontStyles(); in CreateRootStyle() local
168 pFontStyle->SetColor(font.GetColor()); in CreateRootStyle()
169 pFontStyle->SetFontStyle(font.IsItalic() ? FDE_CSSFONTSTYLE_Italic in CreateRootStyle()
171 pFontStyle->SetFontWeight(font.IsBold() ? FXFONT_FW_BOLD in CreateRootStyle()
190 pFontStyle->SetFontSize(fFontSize); in CreateRootStyle()
370 IFDE_CSSFontStyle* pFontStyle = pStyle->GetFontStyles(); in GetFont() local
371 int32_t iCount = pFontStyle->CountFontFamilies(); in GetFont()
373 wsFamily = pFontStyle->GetFontFamily(iCount - 1); in GetFont()
376 if (pFontStyle->GetFontWeight() > FXFONT_FW_NORMAL) { in GetFont()
379 if (pFontStyle->GetFontStyle() == FDE_CSSFONTSTYLE_Italic) { in GetFont()
/external/pdfium/xfa/src/fdp/src/css/
Dfde_cssdatatable.cpp86 FX_DWORD FDE_CSSFontStyleToFDE(IFDE_CSSFontStyle* pFontStyle) { in FDE_CSSFontStyleToFDE() argument
87 FXSYS_assert(pFontStyle != NULL); in FDE_CSSFontStyleToFDE()
89 if (pFontStyle->GetFontStyle() == FDE_CSSFONTSTYLE_Italic) { in FDE_CSSFontStyleToFDE()
92 if (pFontStyle->GetFontWeight() >= 700) { in FDE_CSSFontStyleToFDE()