HomeSort by: relevance | last modified time | path
    Searched defs:FixItLoc (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAttr.cpp 442 SourceLocation FixItLoc =
446 if (FixItLoc.isValid())
447 DB << FixItHint::CreateInsertion(FixItLoc, "pop");
SemaExceptionSpec.cpp 456 SourceLocation FixItLoc;
463 FixItLoc = getLocForEndOfToken(FTLoc.getLocalRangeEnd());
466 if (FixItLoc.isInvalid())
472 << FixItHint::CreateInsertion(FixItLoc, " " + OS.str().str());
SemaType.cpp 4204 SourceLocation FixItLoc = S.getLocForEndOfToken(PointerLoc);
4205 if (!FixItLoc.isValid() || FixItLoc == PointerLoc)
4208 const char *NextChar = S.SourceMgr.getCharacterData(FixItLoc);
4229 Diag << FixItHint::CreateInsertion(FixItLoc, InsertionText);
4245 auto FixItLoc = PointerEndLoc.isValid() ? PointerEndLoc : PointerLoc;
4246 if (FixItLoc.isMacroID())
4250 auto Diag = S.Diag(FixItLoc, diag::note_nullability_fix_it);
4253 fixItNullability(S, Diag, FixItLoc, Nullability);
5073 SourceLocation DiagLoc, FixitLoc;
    [all...]

Completed in 29 milliseconds