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

References

tools/clang/tools/extra/clang-tidy/modernize/UseOverrideCheck.cpp
  150         InsertLoc = T.getLocation();
  160           if ((!InsertLoc.isValid() ||
  161                Sources.isBeforeInTranslationUnit(Loc, InsertLoc)) &&
  163             InsertLoc = Loc;
  168     if (InsertLoc.isInvalid() && Method->doesThisDeclarationHaveABody() &&
  180       InsertLoc = LastTokenIter->getEndLoc();
  183     if (!InsertLoc.isValid()) {
  192         InsertLoc = Tokens[Tokens.size() - 2].getLocation();
  197         InsertLoc = Tokens.back().getLocation();
  200     if (!InsertLoc.isValid()) {
  201       InsertLoc = FileRange.getEnd();
  211     Diag << FixItHint::CreateInsertion(InsertLoc, ReplacementText);