Searched refs:FixItLoc (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExceptionSpec.cpp456 SourceLocation FixItLoc; local
463 FixItLoc = getLocForEndOfToken(FTLoc.getLocalRangeEnd());
466 if (FixItLoc.isInvalid())
472 << FixItHint::CreateInsertion(FixItLoc, " " + OS.str().str());
H A DSemaAttr.cpp387 SourceLocation FixItLoc = Lexer::findLocationAfterToken( local
390 if (FixItLoc.isValid())
391 DB << FixItHint::CreateInsertion(FixItLoc, "pop");
H A DSemaType.cpp4092 SourceLocation FixItLoc = S.getLocForEndOfToken(PointerLoc);
4093 if (!FixItLoc.isValid() || FixItLoc == PointerLoc)
4096 const char *NextChar = S.SourceMgr.getCharacterData(FixItLoc);
4117 Diag << FixItHint::CreateInsertion(FixItLoc, InsertionText);
4133 auto FixItLoc = PointerEndLoc.isValid() ? PointerEndLoc : PointerLoc; local
4134 if (FixItLoc.isMacroID())
4138 auto Diag = S.Diag(FixItLoc, diag::note_nullability_fix_it);
4141 fixItNullability(S, Diag, FixItLoc, Nullability);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2600 // FixItLoc = possible correct location for the attributes
2602 SourceLocation FixItLoc = SourceLocation()) {
2605 DiagnoseProhibitedAttributes(Attrs.Range, FixItLoc);
2610 SourceLocation FixItLoc = SourceLocation()) {
2613 DiagnoseProhibitedAttributes(Attrs.Range, FixItLoc);
2617 SourceLocation FixItLoc);

Completed in 190 milliseconds