Home
last modified time | relevance | path

Searched refs:CurEnd (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Edit/
H A DEditedSource.cpp412 FileOffset CurOffs, CurEnd; in applyRewrites() local
422 CurEnd = CurOffs.getWithOffset(CurLen); in applyRewrites()
428 assert(offs >= CurEnd); in applyRewrites()
430 if (offs == CurEnd) { in applyRewrites()
433 CurEnd.getWithOffset(act.RemoveLen); in applyRewrites()
442 CurEnd = CurOffs.getWithOffset(CurLen); in applyRewrites()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DSmallString.h77 auto CurEnd = this->end(); in append() local
79 this->uninitialized_copy(Ref.begin(), Ref.end(), CurEnd); in append()
80 CurEnd += Ref.size(); in append()