Home
last modified time | relevance | path

Searched refs:nEndIndex (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/xfa/src/fee/src/fee/
Dfde_txtedtparag.cpp42 int32_t nEndIndex = m_nCharStart + m_nCharCount; in LoadParag() local
53 if (pIter->GetAt() + 1 == nEndIndex && in LoadParag()
67 if ((pIter->GetAt() + 1 == nEndIndex) && in LoadParag()
72 } while (pIter->Next(FALSE) && (pIter->GetAt() < nEndIndex)); in LoadParag()
107 int32_t nEndIndex = m_nCharStart + m_nCharCount; in CalcLines() local
117 if (pIter->GetAt() + 1 == nEndIndex && in CalcLines()
125 if ((pIter->GetAt() + 1 == nEndIndex) && in CalcLines()
130 } while (pIter->Next(FALSE) && (pIter->GetAt() < nEndIndex)); in CalcLines()
/external/pdfium/fpdfsdk/src/fxedit/
Dfxet_list.cpp325 void CPLST_Select::Add(int32_t nBeginIndex, int32_t nEndIndex) { in Add() argument
326 if (nBeginIndex > nEndIndex) { in Add()
327 int32_t nTemp = nEndIndex; in Add()
328 nEndIndex = nBeginIndex; in Add()
332 for (int32_t i = nBeginIndex; i <= nEndIndex; i++) in Add()
344 void CPLST_Select::Sub(int32_t nBeginIndex, int32_t nEndIndex) { in Sub() argument
345 if (nBeginIndex > nEndIndex) { in Sub()
346 int32_t nTemp = nEndIndex; in Sub()
347 nEndIndex = nBeginIndex; in Sub()
351 for (int32_t i = nBeginIndex; i <= nEndIndex; i++) in Sub()
/external/pdfium/fpdfsdk/include/fxedit/
Dfxet_list.h265 void Add(int32_t nBeginIndex, int32_t nEndIndex);
267 void Sub(int32_t nBeginIndex, int32_t nEndIndex);
/external/pdfium/core/src/fpdfdoc/
Dpdf_vt.h275 void ClearMidWords(int32_t nBeginIndex, int32_t nEndIndex);
Ddoc_vt.cpp278 void CSection::ClearMidWords(int32_t nBeginIndex, int32_t nEndIndex) { in ClearMidWords() argument
279 for (int32_t i = nEndIndex; i > nBeginIndex; i--) { in ClearMidWords()