Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/pwl/
Dcpwl_list_impl.cpp64 void CPLST_Select::Add(int32_t nBeginIndex, int32_t nEndIndex) { in Add() argument
65 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() argument
79 if (nBeginIndex > nEndIndex) in Sub()
80 std::swap(nBeginIndex, nEndIndex); in Sub()
82 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.h59 void ClearMidWords(int32_t nBeginIndex, int32_t nEndIndex);
Dcsection.cpp231 void CSection::ClearMidWords(int32_t nBeginIndex, int32_t nEndIndex) { in ClearMidWords() argument
232 for (int32_t i = nEndIndex; i > nBeginIndex; i--) { in ClearMidWords()