reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/tools/extra/clang-tidy/bugprone/BranchCloneCheck.cpp
  209         if (EndLoc.isInvalid())
  210           EndLoc = (EndCurrent - 1)->back()->getBeginLoc();
  212         if (EndLoc.isMacroID())
  213           EndLoc = Context.getSourceManager().getExpansionLoc(EndLoc);
  213           EndLoc = Context.getSourceManager().getExpansionLoc(EndLoc);
  214         EndLoc = Lexer::getLocForEndOfToken(EndLoc, 0, *Result.SourceManager,
  214         EndLoc = Lexer::getLocForEndOfToken(EndLoc, 0, *Result.SourceManager,
  217         if (EndLoc.isValid()) {
  218           diag(EndLoc, "last of these clones ends here", DiagnosticIDs::Note);