Home
last modified time | relevance | path

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

/external/pdfium/core/fpdfdoc/
Dcsection.cpp17 CSection::CSection(CPDF_VariableText* pVT) : m_pVT(pVT) {} in CSection() function in CSection
19 CSection::~CSection() {} in ~CSection()
21 void CSection::ResetAll() { in ResetAll()
26 void CSection::ResetLinePlace() { in ResetLinePlace()
34 CPVT_WordPlace CSection::AddWord(const CPVT_WordPlace& place, in AddWord()
43 CPVT_WordPlace CSection::AddLine(const CPVT_LineInfo& lineinfo) { in AddLine()
48 CPVT_FloatRect CSection::Rearrange() { in Rearrange()
54 CFX_SizeF CSection::GetSectionSize(float fFontSize) { in GetSectionSize()
58 CPVT_WordPlace CSection::GetBeginWordPlace() const { in GetBeginWordPlace()
64 CPVT_WordPlace CSection::GetEndWordPlace() const { in GetEndWordPlace()
[all …]
Dcpdf_variabletext.cpp120 CSection* pSection = m_pVT->m_SectionArray[m_CurPos.nSecIndex].get(); in NextLine()
139 CSection* pSection = m_pVT->m_SectionArray[m_CurPos.nSecIndex].get(); in GetWord()
165 CSection* pSection = m_pVT->m_SectionArray[m_CurPos.nSecIndex].get(); in GetLine()
247 CSection* pSection = m_SectionArray[wordplace.nSecIndex].get(); in InsertSection()
252 CSection* pNewSection = m_SectionArray[NewPlace.nSecIndex].get(); in InsertSection()
348 CSection* pSection = m_SectionArray[i].get(); in WordPlaceToWordIndex()
365 CSection* pSection = m_SectionArray[i].get(); in WordIndexToWordPlace()
405 CSection* pSection = m_SectionArray[place.nSecIndex].get(); in GetPrevWordPlace()
420 CSection* pSection = m_SectionArray[place.nSecIndex].get(); in GetNextWordPlace()
440 CSection* pSection = m_SectionArray[nMid].get(); in SearchWordPlace()
[all …]
Dctypeset.h15 class CSection; variable
19 explicit CTypeset(CSection* pSection);
32 CSection* const m_pSection;
Dcsection.h25 class CSection final {
27 explicit CSection(CPDF_VariableText* pVT);
28 ~CSection();
Dcpdf_variabletext.h23 class CSection; variable
199 std::vector<std::unique_ptr<CSection>> m_SectionArray;
Dctypeset.cpp176 CTypeset::CTypeset(CSection* pSection) in CTypeset()