Home
last modified time | relevance | path

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

/external/pdfium/core/fpdfdoc/
Dcsection.cpp14 CSection::CSection(CPDF_VariableText* pVT) : m_pVT(pVT) {} in CSection() function in CSection
16 CSection::~CSection() { in ~CSection()
20 void CSection::ResetAll() { in ResetAll()
25 void CSection::ResetLineArray() { in ResetLineArray()
29 void CSection::ResetWordArray() { in ResetWordArray()
36 void CSection::ResetLinePlace() { in ResetLinePlace()
44 CPVT_WordPlace CSection::AddWord(const CPVT_WordPlace& place, in AddWord()
57 CPVT_WordPlace CSection::AddLine(const CPVT_LineInfo& lineinfo) { in AddLine()
61 CPVT_FloatRect CSection::Rearrange() { in Rearrange()
68 CFX_SizeF CSection::GetSectionSize(FX_FLOAT fFontSize) { in GetSectionSize()
[all …]
Dcpdf_variabletext.cpp115 if (CSection* pSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) { in NextLine()
137 if (CSection* pLastSection = in PrevLine()
167 if (CSection* pSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) { in GetWord()
192 if (CSection* pSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) { in SetWord()
206 if (CSection* pSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) { in GetLine()
223 if (CSection* pSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) { in GetSection()
235 if (CSection* pSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) { in SetSection()
275 if (CSection* pSection = m_SectionArray.GetAt(0)) in Initialize()
320 if (CSection* pSection = m_SectionArray.GetAt(wordplace.nSecIndex)) { in InsertSection()
325 if (CSection* pNewSection = m_SectionArray.GetAt(NewPlace.nSecIndex)) { in InsertSection()
[all …]
Dctypeset.h14 class CSection; variable
18 explicit CTypeset(CSection* pSection);
31 CSection* const m_pSection;
Dcsection.h21 class CSection final {
23 explicit CSection(CPDF_VariableText* pVT);
24 ~CSection();
Dcpdf_variabletext.h24 class CSection; variable
165 friend class CSection; variable
224 CPVT_ArrayTemplate<CSection*> m_SectionArray;
Dctypeset.cpp174 CTypeset::CTypeset(CSection* pSection) in CTypeset()