Searched defs:nEndIndex (Results 1 - 3 of 3) sorted by relevance

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

Completed in 90 milliseconds