Home
last modified time | relevance | path

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

/external/pdfium/xfa/fde/
Dcfde_txtedtparag.cpp46 int32_t nEndIndex = m_nCharStart + m_nCharCount; in LoadParag() local
57 if (pIter->GetAt() + 1 == nEndIndex && in LoadParag()
71 if ((pIter->GetAt() + 1 == nEndIndex) && in LoadParag()
76 } while (pIter->Next(false) && (pIter->GetAt() < nEndIndex)); in LoadParag()
110 int32_t nEndIndex = m_nCharStart + m_nCharCount; in CalcLines() local
122 if (pIter->GetAt() + 1 == nEndIndex && in CalcLines()
130 if ((pIter->GetAt() + 1 == nEndIndex) && in CalcLines()
135 } while (pIter->Next(false) && (pIter->GetAt() < nEndIndex)); in CalcLines()
/external/pdfium/fpdfsdk/fxedit/
Dfxet_list.cpp105 void CPLST_Select::Add(int32_t nBeginIndex, int32_t nEndIndex) { in Add() argument
106 if (nBeginIndex > nEndIndex) { in Add()
107 int32_t nTemp = nEndIndex; in Add()
108 nEndIndex = nBeginIndex; in Add()
112 for (int32_t i = nBeginIndex; i <= nEndIndex; i++) in Add()
124 void CPLST_Select::Sub(int32_t nBeginIndex, int32_t nEndIndex) { in Sub() argument
125 if (nBeginIndex > nEndIndex) { in Sub()
126 int32_t nTemp = nEndIndex; in Sub()
127 nEndIndex = nBeginIndex; in Sub()
131 for (int32_t i = nBeginIndex; i <= nEndIndex; i++) in Sub()
Dfxet_list.h203 void Add(int32_t nBeginIndex, int32_t nEndIndex);
205 void Sub(int32_t nBeginIndex, int32_t nEndIndex);
/external/pdfium/core/fpdfdoc/
Dcsection.h58 void ClearMidWords(int32_t nBeginIndex, int32_t nEndIndex);
Dcsection.cpp264 void CSection::ClearMidWords(int32_t nBeginIndex, int32_t nEndIndex) { in ClearMidWords() argument
265 for (int32_t i = nEndIndex; i > nBeginIndex; i--) { in ClearMidWords()