Searched refs:FixItInsertionLine (Results 1 - 2 of 2) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
H A DTextDiagnostic.cpp323 std::string &FixItInsertionLine,
327 unsigned FixItColumns = llvm::sys::locale::columnWidth(FixItInsertionLine);
354 if (!FixItInsertionLine.empty()) {
355 unsigned FixItStart = 0, FixItEnd = FixItInsertionLine.size();
357 if (!isWhitespace(FixItInsertionLine[FixItStart]))
361 if (!isWhitespace(FixItInsertionLine[FixItEnd - 1]))
369 = llvm::sys::locale::columnWidth(FixItInsertionLine.substr(0, FixItEnd));
503 if (!FixItInsertionLine.empty())
504 FixItInsertionLine.replace(0, CaretStart, front_space);
1072 std::string FixItInsertionLine;
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DSourceMgr.cpp438 std::string FixItInsertionLine; local
439 buildFixItLine(CaretLine, FixItInsertionLine, FixIts,
477 if (FixItInsertionLine.empty())
480 for (size_t i = 0, e = FixItInsertionLine.size(), OutCol = 0; i < e; ++i) {
482 OS << FixItInsertionLine[i]; local
489 OS << FixItInsertionLine[i]; local
495 if (FixItInsertionLine[i] != ' ')

Completed in 47 milliseconds