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

/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DSemaExceptionSpec.cpp468 SourceLocation FixItLoc; local
475 FixItLoc = getLocForEndOfToken(FTLoc.getLocalRangeEnd());
478 if (FixItLoc.isInvalid())
484 << FixItHint::CreateInsertion(FixItLoc, " " + OS.str().str());
H A DSemaAttr.cpp491 SourceLocation FixItLoc = local
495 if (FixItLoc.isValid())
496 DB << FixItHint::CreateInsertion(FixItLoc, "pop");
H A DSemaType.cpp4490 SourceLocation FixItLoc = S.getLocForEndOfToken(PointerLoc);
4491 if (!FixItLoc.isValid() || FixItLoc == PointerLoc)
4494 const char *NextChar = S.SourceMgr.getCharacterData(FixItLoc);
4515 Diag << FixItHint::CreateInsertion(FixItLoc, InsertionText);
4531 auto FixItLoc = PointerEndLoc.isValid() ? PointerEndLoc : PointerLoc; local
4532 if (FixItLoc.isMacroID())
4536 auto Diag = S.Diag(FixItLoc, diag::note_nullability_fix_it);
4539 fixItNullability(S, Diag, FixItLoc, Nullability);
/freebsd-current/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2769 // FixItLoc = possible correct location for the attributes
2771 SourceLocation FixItLoc = SourceLocation()) {
2774 DiagnoseProhibitedAttributes(Attrs, FixItLoc);
2779 SourceLocation FixItLoc = SourceLocation()) {
2782 DiagnoseProhibitedAttributes(Attrs, FixItLoc);
2786 SourceLocation FixItLoc);

Completed in 199 milliseconds