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

/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/
H A DTextDiagnostic.cpp329 std::string &FixItInsertionLine,
334 FixItInsertionLine.size()));
360 if (!FixItInsertionLine.empty()) {
361 unsigned FixItStart = 0, FixItEnd = FixItInsertionLine.size();
363 if (!isWhitespace(FixItInsertionLine[FixItStart]))
367 if (!isWhitespace(FixItInsertionLine[FixItEnd - 1]))
375 = llvm::sys::locale::columnWidth(FixItInsertionLine.substr(0, FixItEnd));
509 if (!FixItInsertionLine.empty())
510 FixItInsertionLine.replace(0, CaretStart, front_space);
1002 std::string FixItInsertionLine;
[all...]
/freebsd-10-stable/contrib/llvm/lib/Support/
H A DSourceMgr.cpp429 std::string FixItInsertionLine; local
430 buildFixItLine(CaretLine, FixItInsertionLine, FixIts,
470 if (FixItInsertionLine.empty())
473 for (size_t i = 0, e = FixItInsertionLine.size(), OutCol = 0; i < e; ++i) {
475 S << FixItInsertionLine[i]; local
482 S << FixItInsertionLine[i]; local
488 if (FixItInsertionLine[i] != ' ')

Completed in 155 milliseconds