Searched refs:nWordIndex (Results 1 – 8 of 8) 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() 33 this->nWordIndex = nWordIndex; in CPVT_WordPlace() 38 nSecIndex = nLineIndex = nWordIndex = -1; in Default() 43 …Index == this->nSecIndex && wp.nLineIndex == this->nLineIndex && wp.nWordIndex == this->nWordIndex; 48 …Index != this->nSecIndex || wp.nLineIndex != this->nLineIndex || wp.nWordIndex != this->nWordIndex; 65 if (this->nWordIndex > wp.nWordIndex) { in WordCmp() 68 if (this->nWordIndex < wp.nWordIndex) { in WordCmp() 106 FX_INT32 nWordIndex; member 323 virtual void SetAt(FX_INT32 nWordIndex) = 0;
|
/external/pdfium/core/src/fpdfdoc/ |
D | doc_vt.cpp | 35 if (place.nWordIndex > m_LineInfo.nEndWordIndex) { in GetPrevWordPlace() 38 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, place.nWordIndex - 1); in GetPrevWordPlace() 42 if (place.nWordIndex < m_LineInfo.nBeginWordIndex) { in GetNextWordPlace() 45 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, place.nWordIndex + 1); in GetNextWordPlace() 81 FX_INT32 nWordIndex = FPDF_MAX(FPDF_MIN(place.nWordIndex, this->m_WordArray.GetSize()), 0); in AddWord() local 82 if (nWordIndex == m_WordArray.GetSize()) { in AddWord() 85 m_WordArray.InsertAt(nWordIndex, pWord); in AddWord() 131 if (place.nWordIndex == pLine->m_LineInfo.nBeginWordIndex) { in GetPrevWordPlace() 133 } else if (place.nWordIndex < pLine->m_LineInfo.nBeginWordIndex) { in GetPrevWordPlace() 152 if (place.nWordIndex >= pLine->m_LineInfo.nEndWordIndex) { in GetNextWordPlace() [all …]
|
D | pdf_vt.h | 310 void ClearLeftWords(FX_INT32 nWordIndex); 311 void ClearRightWords(FX_INT32 nWordIndex); 627 void SetAt(FX_INT32 nWordIndex);
|
/external/pdfium/fpdfsdk/include/javascript/ |
D | Document.h | 179 CFX_WideString GetObjWordStr(CPDF_TextObject* pTextObj, int nWordIndex);
|
/external/pdfium/fpdfsdk/include/fxedit/ |
D | fx_edit.h | 154 virtual void SetAt(FX_INT32 nWordIndex) = 0;
|
D | fxet_edit.h | 788 void SetAt(FX_INT32 nWordIndex);
|
/external/pdfium/fpdfsdk/src/javascript/ |
D | Document.cpp | 1793 CFX_WideString Document::GetObjWordStr(CPDF_TextObject* pTextObj, int nWordIndex) in GetObjWordStr() argument 1827 if (nWords-1 == nWordIndex) in GetObjWordStr()
|
/external/pdfium/fpdfsdk/src/fxedit/ |
D | fxet_edit.cpp | 108 void CFX_Edit_Iterator::SetAt(FX_INT32 nWordIndex) in SetAt() argument 112 m_pVTIterator->SetAt(nWordIndex); in SetAt()
|