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

Declarations

tools/clang/include/clang/Analysis/Analyses/ExprMutationAnalyzer.h
   30   const Stmt *findMutation(const Expr *Exp);

References

tools/clang/include/clang/Analysis/Analyses/ExprMutationAnalyzer.h
   28   bool isMutated(const Expr *Exp) { return findMutation(Exp) != nullptr; }
tools/clang/lib/Analysis/ExprMutationAnalyzer.cpp
  110   return tryEachDeclRef(Dec, &ExprMutationAnalyzer::findMutation);
  185   return tryEachMatch<Expr>(Matches, this, &ExprMutationAnalyzer::findMutation);
tools/clang/unittests/Analysis/ExprMutationAnalyzerTest.cpp
   66     const Stmt *By = Analyzer.findMutation(E);