Home
last modified time | relevance | path

Searched refs:nBeginIndex (Results 1 – 4 of 4) sorted by relevance

/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()
108 nEndIndex = nBeginIndex; in Add()
109 nBeginIndex = nTemp; 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()
127 nEndIndex = nBeginIndex; in Sub()
128 nBeginIndex = nTemp; 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()