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

Declarations

tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
  119 const Expr *getDerefExpr(const Stmt *S);

References

tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
  102       BadE = bugreporter::getDerefExpr(BadE);
tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
  185   bugreporter::trackExpressionValue(N, bugreporter::getDerefExpr(S), *report);
  205       bugreporter::trackExpressionValue(N, bugreporter::getDerefExpr(S), *report);
tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp
  216     const Expr *ArgEDeref = bugreporter::getDerefExpr(ArgE);
tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
  118   emitBug(C, *BT_NullReference, RetE, bugreporter::getDerefExpr(RetE));
tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
 1914       if (const Expr *DerefEx = bugreporter::getDerefExpr(UO->getSubExpr()))