Searched refs:nEndIndex (Results 1 – 4 of 4) sorted by relevance
64 void CPLST_Select::Add(int32_t nBeginIndex, int32_t nEndIndex) { in Add() argument65 if (nBeginIndex > nEndIndex) in Add()66 std::swap(nBeginIndex, nEndIndex); in Add()68 for (int32_t i = nBeginIndex; i <= nEndIndex; ++i) in Add()78 void CPLST_Select::Sub(int32_t nBeginIndex, int32_t nEndIndex) { in Sub() argument79 if (nBeginIndex > nEndIndex) in Sub()80 std::swap(nBeginIndex, nEndIndex); in Sub()82 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);
59 void ClearMidWords(int32_t nBeginIndex, int32_t nEndIndex);
231 void CSection::ClearMidWords(int32_t nBeginIndex, int32_t nEndIndex) { in ClearMidWords() argument232 for (int32_t i = nEndIndex; i > nBeginIndex; i--) { in ClearMidWords()