Home
last modified time | relevance | path

Searched refs:CXFA_Font (Results 1 – 11 of 11) sorted by relevance

/external/pdfium/xfa/fxfa/parser/
Dcxfa_font.cpp55 CXFA_Font::CXFA_Font(CXFA_Document* doc, XFA_PacketType packet) in CXFA_Font() function in CXFA_Font
66 CXFA_Font::~CXFA_Font() = default;
68 float CXFA_Font::GetBaselineShift() const { in GetBaselineShift()
73 float CXFA_Font::GetHorizontalScale() { in GetHorizontalScale()
79 float CXFA_Font::GetVerticalScale() { in GetVerticalScale()
85 float CXFA_Font::GetLetterSpacing() { in GetLetterSpacing()
93 int32_t CXFA_Font::GetLineThrough() { in GetLineThrough()
97 int32_t CXFA_Font::GetUnderline() { in GetUnderline()
101 XFA_AttributeValue CXFA_Font::GetUnderlinePeriod() { in GetUnderlinePeriod()
107 float CXFA_Font::GetFontSize() const { in GetFontSize()
[all …]
Dcxfa_font.h13 class CXFA_Font final : public CXFA_Node {
15 CXFA_Font(CXFA_Document* doc, XFA_PacketType packet);
16 ~CXFA_Font() override;
Dcxfa_caption.h12 class CXFA_Font; variable
29 CXFA_Font* GetFontIfExists();
Dcxfa_caption.cpp72 CXFA_Font* CXFA_Caption::GetFontIfExists() { in GetFontIfExists()
73 return GetChild<CXFA_Font>(0, XFA_Element::Font, false); in GetFontIfExists()
Dcxfa_node.h35 class CXFA_Font; variable
237 CXFA_Font* GetFontIfExists() const;
238 CXFA_Font* GetOrCreateFontIfPossible();
Dcxfa_node.cpp2225 CXFA_Font* CXFA_Node::GetOrCreateFontIfPossible() { in GetOrCreateFontIfPossible()
2226 return JSObject()->GetOrCreateProperty<CXFA_Font>(0, XFA_Element::Font); in GetOrCreateFontIfPossible()
2229 CXFA_Font* CXFA_Node::GetFontIfExists() const { in GetFontIfExists()
2230 return JSObject()->GetProperty<CXFA_Font>(0, XFA_Element::Font); in GetFontIfExists()
2234 CXFA_Font* font = GetFontIfExists(); in GetFontSize()
2251 CXFA_Font* font = GetFontIfExists(); in GetTextColor()
3146 CXFA_Font* font = caption->GetFontIfExists(); in CalcCaptionSize()
3150 CXFA_Font* widgetfont = GetFontIfExists(); in CalcCaptionSize()
3896 CXFA_Font* font = GetFontIfExists(); in GetFDEFont()
5829 node = pdfium::MakeUnique<CXFA_Font>(doc, packet); in Create()
/external/pdfium/xfa/fxfa/
Dcxfa_textparser.cpp77 CXFA_Font* font = pTextProvider->GetFontIfExists(); in InitCSSData()
151 CXFA_Font* font = pTextProvider->GetFontIfExists(); in CreateRootStyle()
344 CXFA_Font* font = pTextProvider->GetFontIfExists(); in GetFont()
374 CXFA_Font* font = pTextProvider->GetFontIfExists(); in GetFontSize()
400 CXFA_Font* font = pTextProvider->GetFontIfExists(); in GetHorScale()
412 CXFA_Font* font = pTextProvider->GetFontIfExists(); in GetVerScale()
422 CXFA_Font* font = pTextProvider->GetFontIfExists(); in GetUnderline()
457 CXFA_Font* font = pTextProvider->GetFontIfExists(); in GetLinethrough()
467 CXFA_Font* font = pTextProvider->GetFontIfExists(); in GetColor()
477 CXFA_Font* font = pTextProvider->GetFontIfExists(); in GetBaseline()
Dcxfa_textprovider.h14 class CXFA_Font; variable
36 CXFA_Font* GetFontIfExists();
Dcxfa_textprovider.cpp125 CXFA_Font* CXFA_TextProvider::GetFontIfExists() { in GetFontIfExists()
131 CXFA_Font* font = pNode->GetChild<CXFA_Font>(0, XFA_Element::Font, false); in GetFontIfExists()
Dcxfa_textlayout.cpp172 CXFA_Font* font = m_pTextProvider->GetFontIfExists(); in InitBreak()
/external/pdfium/fxjs/xfa/
Dcjx_object.cpp1166 CXFA_Font* font = ToNode(object_.Get())->GetOrCreateFontIfPossible(); in ScriptSomFontColor()