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

References

tools/clang/lib/AST/Expr.cpp
  217     return static_cast<const E *>(expr)->getBeginLoc();
tools/clang/lib/AST/Stmt.cpp
  256     return SourceRange(static_cast<const S *>(stmt)->getBeginLoc(),
tools/clang/tools/extra/clang-tidy/cppcoreguidelines/ProTypeCstyleCastCheck.cpp
   48     diag(MatchedCast->getBeginLoc(),
   73           MatchedCast->getBeginLoc(),
   92           MatchedCast->getBeginLoc(),
  100     diag(MatchedCast->getBeginLoc(),
tools/clang/tools/extra/clang-tidy/google/AvoidCStyleCastsCheck.cpp
   99       diag(CastExpr->getBeginLoc(), "redundant cast to the same type")
  122   if (SM.getFilename(SM.getSpellingLoc(CastExpr->getBeginLoc())).endswith(".c"))
  134       diag(CastExpr->getBeginLoc(), "C-style casts are discouraged; use %0");