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

  /external/pdfium/core/fpdfdoc/
cpvt_wordplace.h 13 CPVT_WordPlace() : nSecIndex(-1), nLineIndex(-1), nWordIndex(-1) {}
19 nLineIndex(other_nLineIndex),
24 nLineIndex = -1;
30 nLineIndex = 0;
35 return wp.nSecIndex == nSecIndex && wp.nLineIndex == nLineIndex &&
44 if (nLineIndex != wp.nLineIndex)
45 return nLineIndex < wp.nLineIndex;
    [all...]
cline.cpp 16 return CPVT_WordPlace(LinePlace.nSecIndex, LinePlace.nLineIndex, -1);
20 return CPVT_WordPlace(LinePlace.nSecIndex, LinePlace.nLineIndex,
26 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex,
29 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex,
35 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex,
38 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex,
csection.cpp 71 if (place.nLineIndex < 0)
74 if (place.nLineIndex >= pdfium::CollectionSize<int32_t>(m_LineArray))
77 CLine* pLine = m_LineArray[place.nLineIndex].get();
79 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, -1);
84 if (!pdfium::IndexInBounds(m_LineArray, place.nLineIndex - 1))
87 return m_LineArray[place.nLineIndex - 1]->GetEndWordPlace();
91 if (place.nLineIndex < 0)
94 if (place.nLineIndex >= pdfium::CollectionSize<int32_t>(m_LineArray))
97 CLine* pLine = m_LineArray[place.nLineIndex].get();
101 if (!pdfium::IndexInBounds(m_LineArray, place.nLineIndex + 1)
    [all...]
cpdf_variabletext.cpp 121 if (m_CurPos.nLineIndex <
123 m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex, m_CurPos.nLineIndex + 1, -1);
140 if (!pdfium::IndexInBounds(pSection->m_LineArray, m_CurPos.nLineIndex) ||
161 line.lineplace = CPVT_WordPlace(m_CurPos.nSecIndex, m_CurPos.nLineIndex, -1);
166 if (!pdfium::IndexInBounds(pSection->m_LineArray, m_CurPos.nLineIndex))
169 CLine* pLine = pSection->m_LineArray[m_CurPos.nLineIndex].get();
476 if (temp.nLineIndex-- > 0) {
482 temp.nLineIndex =
500 if (temp.nLineIndex++ <
514 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, -1)
    [all...]

Completed in 157 milliseconds