Home
last modified time | relevance | path

Searched refs:CFX_TxtBreak (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/xfa/fgas/layout/
Dcfx_txtbreak.cpp28 CFX_TxtBreak::CFX_TxtBreak() in CFX_TxtBreak() function in CFX_TxtBreak
33 CFX_TxtBreak::~CFX_TxtBreak() {} in ~CFX_TxtBreak()
35 void CFX_TxtBreak::SetLineWidth(float fLineWidth) { in SetLineWidth()
40 void CFX_TxtBreak::SetAlignment(int32_t iAlignment) { in SetAlignment()
46 void CFX_TxtBreak::SetCombWidth(float fCombWidth) { in SetCombWidth()
50 void CFX_TxtBreak::AppendChar_Combination(CFX_Char* pCurChar) { in AppendChar_Combination()
90 void CFX_TxtBreak::AppendChar_Tab(CFX_Char* pCurChar) { in AppendChar_Tab()
94 CFX_BreakType CFX_TxtBreak::AppendChar_Control(CFX_Char* pCurChar) { in AppendChar_Control()
121 CFX_BreakType CFX_TxtBreak::AppendChar_Arabic(CFX_Char* pCurChar) { in AppendChar_Arabic()
175 CFX_BreakType CFX_TxtBreak::AppendChar_Others(CFX_Char* pCurChar) { in AppendChar_Others()
[all …]
Dcfx_txtbreak.h57 class CFX_TxtBreak : public CFX_Break {
59 CFX_TxtBreak();
60 ~CFX_TxtBreak() override;
/external/pdfium/xfa/fde/
Dcfde_textout.h23 class CFX_TxtBreak; variable
90 std::unique_ptr<CFX_TxtBreak> m_pTxtBreak;
Dcfde_texteditengine.h168 CFX_TxtBreak* GetTextBreak() { return &text_break_; } in GetTextBreak()
205 CFX_TxtBreak text_break_;
Dcfde_textout.cpp128 : m_pTxtBreak(pdfium::MakeUnique<CFX_TxtBreak>()), in CFDE_TextOut()