Searched refs:nSecIndex (Results 1 – 2 of 2) sorted by relevance
/external/pdfium/core/include/fpdfdoc/ |
D | fpdf_vt.h | 25 CPVT_WordPlace() : nSecIndex(-1), nLineIndex(-1), nWordIndex(-1) in CPVT_WordPlace() 29 CPVT_WordPlace(FX_INT32 nSecIndex, FX_INT32 nLineIndex, FX_INT32 nWordIndex) in CPVT_WordPlace() 31 this->nSecIndex = nSecIndex; in CPVT_WordPlace() 38 nSecIndex = nLineIndex = nWordIndex = -1; in Default() 43 …return wp.nSecIndex == this->nSecIndex && wp.nLineIndex == this->nLineIndex && wp.nWordIndex == th… 48 …return wp.nSecIndex != this->nSecIndex || wp.nLineIndex != this->nLineIndex || wp.nWordIndex != th… 53 if (this->nSecIndex > wp.nSecIndex) { in WordCmp() 56 if (this->nSecIndex < wp.nSecIndex) { in WordCmp() 76 if (this->nSecIndex > wp.nSecIndex) { in LineCmp() 79 if (this->nSecIndex < wp.nSecIndex) { in LineCmp() [all …]
|
/external/pdfium/core/src/fpdfdoc/ |
D | doc_vt.cpp | 27 return CPVT_WordPlace(LinePlace.nSecIndex, LinePlace.nLineIndex, -1); in GetBeginWordPlace() 31 return CPVT_WordPlace(LinePlace.nSecIndex, LinePlace.nLineIndex, m_LineInfo.nEndWordIndex); in GetEndWordPlace() 36 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, m_LineInfo.nEndWordIndex); in GetPrevWordPlace() 38 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, place.nWordIndex - 1); in GetPrevWordPlace() 43 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, m_LineInfo.nBeginWordIndex); in GetNextWordPlace() 45 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, place.nWordIndex + 1); in GetNextWordPlace() 74 pLine->LinePlace = CPVT_WordPlace(SecPlace.nSecIndex, i, -1); in ResetLinePlace() 91 return CPVT_WordPlace(SecPlace.nSecIndex, m_LineArray.Add(lineinfo), -1); in AddLine() 132 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, -1); in GetPrevWordPlace() 840 place.nSecIndex = 0; in Initialize() [all …]
|