HomeSort by relevance Sort by last modified time
    Searched refs:FixItInsertionLine (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/Frontend/
TextDiagnostic.cpp 329 std::string &FixItInsertionLine,
334 FixItInsertionLine.size()));
339 // no special characters allowed in CaretLine or FixItInsertionLine
343 assert(FixItInsertionLine.end() ==
344 std::find_if(FixItInsertionLine.begin(), FixItInsertionLine.end(),
363 if (!FixItInsertionLine.empty()) {
364 unsigned FixItStart = 0, FixItEnd = FixItInsertionLine.size();
366 if (!isWhitespace(FixItInsertionLine[FixItStart]))
370 if (!isWhitespace(FixItInsertionLine[FixItEnd - 1])
    [all...]
  /external/llvm/lib/Support/
SourceMgr.cpp 424 std::string FixItInsertionLine;
425 buildFixItLine(CaretLine, FixItInsertionLine, FixIts,
465 if (FixItInsertionLine.empty())
468 for (size_t i = 0, e = FixItInsertionLine.size(), OutCol = 0; i != e; ++i) {
470 S << FixItInsertionLine[i];
477 S << FixItInsertionLine[i];
483 if (FixItInsertionLine[i] != ' ')

Completed in 555 milliseconds