Searched refs:nEndIndex (Results 1 – 4 of 4) sorted by relevance
62 void CPLST_Select::Add(int32_t nBeginIndex, int32_t nEndIndex) { in Add() argument63 if (nBeginIndex > nEndIndex) in Add()64 std::swap(nBeginIndex, nEndIndex); in Add()66 for (int32_t i = nBeginIndex; i <= nEndIndex; ++i) in Add()76 void CPLST_Select::Sub(int32_t nBeginIndex, int32_t nEndIndex) { in Sub() argument77 if (nBeginIndex > nEndIndex) in Sub()78 std::swap(nBeginIndex, nEndIndex); in Sub()80 for (int32_t i = nBeginIndex; i <= nEndIndex; ++i) in Sub()
32 void Add(int32_t nBeginIndex, int32_t nEndIndex);34 void Sub(int32_t nBeginIndex, int32_t nEndIndex);
58 void ClearMidWords(int32_t nBeginIndex, int32_t nEndIndex);
225 void CSection::ClearMidWords(int32_t nBeginIndex, int32_t nEndIndex) { in ClearMidWords() argument226 for (int32_t i = nEndIndex; i > nBeginIndex; i--) { in ClearMidWords()