Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DTokenAnalyzer.cpp89 UnwrappedLines(1), in TokenAnalyzer()
114 assert(UnwrappedLines.back().empty()); in process()
116 for (unsigned Run = 0, RunE = UnwrappedLines.size(); Run + 1 != RunE; ++Run) { in process()
117 const auto &Lines = UnwrappedLines[Run]; in process()
155 assert(!UnwrappedLines.empty()); in consumeUnwrappedLine()
156 UnwrappedLines.back().push_back(TheLine); in consumeUnwrappedLine()
160 UnwrappedLines.push_back(SmallVector<UnwrappedLine, 16>()); in finishRun()
H A DTokenAnalyzer.h110 SmallVector<SmallVector<UnwrappedLine, 16>, 2> UnwrappedLines; variable