Home
last modified time | relevance | path

Searched refs:CXFA_Font (Results 1 – 16 of 16) 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
67 CXFA_Font::~CXFA_Font() {} in ~CXFA_Font()
69 float CXFA_Font::GetBaselineShift() const { in GetBaselineShift()
75 float CXFA_Font::GetHorizontalScale() { in GetHorizontalScale()
81 float CXFA_Font::GetVerticalScale() { in GetVerticalScale()
87 float CXFA_Font::GetLetterSpacing() { in GetLetterSpacing()
95 int32_t CXFA_Font::GetLineThrough() { in GetLineThrough()
99 int32_t CXFA_Font::GetUnderline() { in GetUnderline()
103 XFA_AttributeEnum CXFA_Font::GetUnderlinePeriod() { in GetUnderlinePeriod()
109 float CXFA_Font::GetFontSize() const { in GetFontSize()
[all …]
Dcxfa_font.h13 class CXFA_Font : 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.cpp77 CXFA_Font* CXFA_Caption::GetFontIfExists() { in GetFontIfExists()
78 return GetChild<CXFA_Font>(0, XFA_Element::Font, false); in GetFontIfExists()
Dcxfa_node.h29 class CXFA_Font; variable
238 CXFA_Font* GetFontIfExists() const;
239 CXFA_Font* GetOrCreateFontIfPossible();
Dcxfa_node.cpp1559 CXFA_Font* CXFA_Node::GetOrCreateFontIfPossible() { in GetOrCreateFontIfPossible()
1560 return JSObject()->GetOrCreateProperty<CXFA_Font>(0, XFA_Element::Font); in GetOrCreateFontIfPossible()
1563 CXFA_Font* CXFA_Node::GetFontIfExists() const { in GetFontIfExists()
1564 return JSObject()->GetProperty<CXFA_Font>(0, XFA_Element::Font); in GetFontIfExists()
1568 CXFA_Font* font = GetFontIfExists(); in GetFontSize()
1585 CXFA_Font* font = GetFontIfExists(); in GetTextColor()
Dcxfa_node_statics.cpp1650 node = pdfium::MakeUnique<CXFA_Font>(doc, packet); in Create()
/external/pdfium/xfa/fxfa/
Dcxfa_textparser.cpp63 CXFA_Font* font = pTextProvider->GetFontIfExists(); in InitCSSData()
135 CXFA_Font* font = pTextProvider->GetFontIfExists(); in CreateRootStyle()
333 CXFA_Font* font = pTextProvider->GetFontIfExists(); in GetFont()
363 CXFA_Font* font = pTextProvider->GetFontIfExists(); in GetFontSize()
389 CXFA_Font* font = pTextProvider->GetFontIfExists(); in GetHorScale()
401 CXFA_Font* font = pTextProvider->GetFontIfExists(); in GetVerScale()
411 CXFA_Font* font = pTextProvider->GetFontIfExists(); in GetUnderline()
444 CXFA_Font* font = pTextProvider->GetFontIfExists(); in GetLinethrough()
454 CXFA_Font* font = pTextProvider->GetFontIfExists(); in GetColor()
464 CXFA_Font* font = pTextProvider->GetFontIfExists(); in GetBaseline()
Dcxfa_textprovider.h14 class CXFA_Font; variable
35 CXFA_Font* GetFontIfExists();
Dcxfa_textprovider.cpp128 CXFA_Font* CXFA_TextProvider::GetFontIfExists() { in GetFontIfExists()
134 CXFA_Font* font = pNode->GetChild<CXFA_Font>(0, XFA_Element::Font, false); in GetFontIfExists()
Dcxfa_widgetacc.h46 class CXFA_Font; variable
Dcxfa_widgetacc.cpp664 CXFA_Font* font = caption->GetFontIfExists(); in CalcCaptionSize()
668 CXFA_Font* widgetfont = m_pNode->GetFontIfExists(); in CalcCaptionSize()
1448 CXFA_Font* font = m_pNode->GetFontIfExists(); in GetFDEFont()
Dcxfa_textlayout.cpp155 CXFA_Font* font = m_pTextProvider->GetFontIfExists(); in InitBreak()
/external/pdfium/fxjs/xfa/
Dcjx_font.h12 class CXFA_Font; variable
16 explicit CJX_Font(CXFA_Font* node);
Dcjx_font.cpp11 CJX_Font::CJX_Font(CXFA_Font* node) : CJX_Node(node) {} in CJX_Font()
Dcjx_object.cpp1300 CXFA_Font* font = ToNode(object_.Get())->GetOrCreateFontIfPossible(); in Script_Som_FontColor()