Home
last modified time | relevance | path

Searched refs:FDE_CSSFontStyle (Results 1 – 6 of 6) sorted by relevance

/external/pdfium/xfa/fde/css/
Dcfde_csscomputedstyle.h35 FDE_CSSFontStyle m_eFontStyle;
63 FDE_CSSFontStyle GetFontStyle() const;
68 void SetFontStyle(FDE_CSSFontStyle eFontStyle);
Dcfde_csscomputedstyle.cpp49 FDE_CSSFontStyle CFDE_CSSComputedStyle::GetFontStyle() const { in GetFontStyle()
69 void CFDE_CSSComputedStyle::SetFontStyle(FDE_CSSFontStyle eFontStyle) { in SetFontStyle()
180 m_eFontStyle(FDE_CSSFontStyle::Normal), in InheritedData()
Dcfde_cssstyleselector.h76 FDE_CSSFontStyle ToFontStyle(FDE_CSSPropertyValue eValue);
Dcfde_cssstyleselector.cpp466 FDE_CSSFontStyle CFDE_CSSStyleSelector::ToFontStyle( in ToFontStyle()
471 return FDE_CSSFontStyle::Italic; in ToFontStyle()
473 return FDE_CSSFontStyle::Normal; in ToFontStyle()
Dfde_css.h147 enum class FDE_CSSFontStyle : uint8_t { enum
/external/pdfium/xfa/fxfa/app/
Dcxfa_textparser.cpp143 pStyle->SetFontStyle(font.IsItalic() ? FDE_CSSFontStyle::Italic in CreateRootStyle()
144 : FDE_CSSFontStyle::Normal); in CreateRootStyle()
355 if (pStyle->GetFontStyle() == FDE_CSSFontStyle::Italic) in GetFont()