Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/pwl/
Dcpwl_list_impl.cpp62 void CPLST_Select::Add(int32_t nBeginIndex, int32_t nEndIndex) { in Add() argument
63 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() argument
77 if (nBeginIndex > nEndIndex) in Sub()
78 std::swap(nBeginIndex, nEndIndex); in Sub()
80 for (int32_t i = nBeginIndex; i <= nEndIndex; ++i) in Sub()
Dcpwl_list_impl.h32 void Add(int32_t nBeginIndex, int32_t nEndIndex);
34 void Sub(int32_t nBeginIndex, int32_t nEndIndex);
/external/pdfium/core/fpdfdoc/
Dcsection.h58 void ClearMidWords(int32_t nBeginIndex, int32_t nEndIndex);
Dcsection.cpp225 void CSection::ClearMidWords(int32_t nBeginIndex, int32_t nEndIndex) { in ClearMidWords() argument
226 for (int32_t i = nEndIndex; i > nBeginIndex; i--) { in ClearMidWords()