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

  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExceptionSpec.cpp 456 SourceLocation FixItLoc;
463 FixItLoc = getLocForEndOfToken(FTLoc.getLocalRangeEnd());
466 if (FixItLoc.isInvalid())
472 << FixItHint::CreateInsertion(FixItLoc, " " + OS.str().str());
SemaAttr.cpp 442 SourceLocation FixItLoc =
446 if (FixItLoc.isValid())
447 DB << FixItHint::CreateInsertion(FixItLoc, "pop");
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...]
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
Parser.h 2601 // FixItLoc = possible correct location for the attributes
2603 SourceLocation FixItLoc = SourceLocation()) {
2606 DiagnoseProhibitedAttributes(Attrs.Range, FixItLoc);
2611 SourceLocation FixItLoc = SourceLocation()) {
2614 DiagnoseProhibitedAttributes(Attrs.Range, FixItLoc);
2618 SourceLocation FixItLoc);

Completed in 84 milliseconds