Home
last modified time | relevance | path

Searched refs:pSection (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/core/fpdfdoc/
Dcpdf_variabletext.cpp121 CSection* pSection = m_pVT->m_SectionArray[m_CurPos.nSecIndex].get(); in NextLine() local
123 pdfium::CollectionSize<int32_t>(pSection->m_LineArray) - 1) { in NextLine()
140 CSection* pSection = m_pVT->m_SectionArray[m_CurPos.nSecIndex].get(); in GetWord() local
141 if (!pdfium::IndexInBounds(pSection->m_LineArray, m_CurPos.nLineIndex) || in GetWord()
142 !pdfium::IndexInBounds(pSection->m_WordArray, m_CurPos.nWordIndex)) { in GetWord()
146 CPVT_WordInfo* pWord = pSection->m_WordArray[m_CurPos.nWordIndex].get(); in GetWord()
151 m_pVT->InToOut(CFX_PointF(pWord->fWordX + pSection->m_Rect.left, in GetWord()
152 pWord->fWordY + pSection->m_Rect.top)); in GetWord()
166 CSection* pSection = m_pVT->m_SectionArray[m_CurPos.nSecIndex].get(); in GetLine() local
167 if (!pdfium::IndexInBounds(pSection->m_LineArray, m_CurPos.nLineIndex)) in GetLine()
[all …]
Dctypeset.h19 explicit CTypeset(CSection* pSection);
Dctypeset.cpp176 CTypeset::CTypeset(CSection* pSection) in CTypeset() argument
177 : m_pVT(pSection->m_pVT), m_pSection(pSection) {} in CTypeset()