HomeSort by relevance Sort by last modified time
    Searched refs:m_LineArray (Results 1 - 4 of 4) sorted by null

  /external/pdfium/core/fpdfdoc/
csection.cpp 23 m_LineArray.clear();
28 for (auto& pLine : m_LineArray) {
44 m_LineArray.push_back(pdfium::MakeUnique<CLine>(lineinfo));
45 return CPVT_WordPlace(SecPlace.nSecIndex, m_LineArray.size() - 1, -1);
59 if (m_LineArray.empty())
61 return m_LineArray.front()->GetBeginWordPlace();
65 if (m_LineArray.empty())
67 return m_LineArray.back()->GetEndWordPlace();
74 if (place.nLineIndex >= pdfium::CollectionSize<int32_t>(m_LineArray))
77 CLine* pLine = m_LineArray[place.nLineIndex].get()
    [all...]
csection.h 51 std::vector<std::unique_ptr<CLine>> m_LineArray;
ctypeset.cpp 185 if (m_pSection->m_LineArray.empty())
197 CLine* pLine = m_pSection->m_LineArray.front().get();
272 m_pSection->m_LineArray.clear();
446 pdfium::CollectionSize<int32_t>(m_pSection->m_LineArray);
449 CLine* pLine = m_pSection->m_LineArray[l].get();
cpdf_variabletext.cpp 122 pdfium::CollectionSize<int32_t>(pSection->m_LineArray) - 1) {
140 if (!pdfium::IndexInBounds(pSection->m_LineArray, m_CurPos.nLineIndex) ||
166 if (!pdfium::IndexInBounds(pSection->m_LineArray, m_CurPos.nLineIndex))
169 CLine* pLine = pSection->m_LineArray[m_CurPos.nLineIndex].get();
483 pdfium::CollectionSize<int32_t>(pLastSection->m_LineArray) - 1;
501 pdfium::CollectionSize<int32_t>(pSection->m_LineArray) - 1) {
523 if (!pdfium::IndexInBounds(pSection->m_LineArray, place.nLineIndex))
526 return pSection->m_LineArray[place.nLineIndex]->GetEndWordPlace();
618 if (!pdfium::IndexInBounds(pSection->m_LineArray, place.nLineIndex))
621 lineinfo = pSection->m_LineArray[place.nLineIndex]->m_LineInfo
    [all...]

Completed in 112 milliseconds