Lines Matching refs:ExprMutationAnalyzer
73 template <class T, class F = const Stmt *(ExprMutationAnalyzer::*)(const T *)>
75 ExprMutationAnalyzer *Analyzer, F Finder) { in tryEachMatch()
86 const Stmt *ExprMutationAnalyzer::findMutation(const Expr *Exp) { in findMutation()
88 {&ExprMutationAnalyzer::findDirectMutation, in findMutation()
89 &ExprMutationAnalyzer::findMemberMutation, in findMutation()
90 &ExprMutationAnalyzer::findArrayElementMutation, in findMutation()
91 &ExprMutationAnalyzer::findCastMutation, in findMutation()
92 &ExprMutationAnalyzer::findRangeLoopMutation, in findMutation()
93 &ExprMutationAnalyzer::findReferenceMutation, in findMutation()
94 &ExprMutationAnalyzer::findFunctionArgMutation}, in findMutation()
98 const Stmt *ExprMutationAnalyzer::findMutation(const Decl *Dec) { in findMutation()
99 return tryEachDeclRef(Dec, &ExprMutationAnalyzer::findMutation); in findMutation()
102 const Stmt *ExprMutationAnalyzer::findPointeeMutation(const Expr *Exp) { in findPointeeMutation()
106 const Stmt *ExprMutationAnalyzer::findPointeeMutation(const Decl *Dec) { in findPointeeMutation()
107 return tryEachDeclRef(Dec, &ExprMutationAnalyzer::findPointeeMutation); in findPointeeMutation()
110 const Stmt *ExprMutationAnalyzer::findMutationMemoized( in findMutationMemoized()
128 const Stmt *ExprMutationAnalyzer::tryEachDeclRef(const Decl *Dec, in tryEachDeclRef()
141 bool ExprMutationAnalyzer::isUnevaluated(const Expr *Exp) { in isUnevaluated()
173 ExprMutationAnalyzer::findExprMutation(ArrayRef<BoundNodes> Matches) { in findExprMutation()
174 return tryEachMatch<Expr>(Matches, this, &ExprMutationAnalyzer::findMutation); in findExprMutation()
178 ExprMutationAnalyzer::findDeclMutation(ArrayRef<BoundNodes> Matches) { in findDeclMutation()
179 return tryEachMatch<Decl>(Matches, this, &ExprMutationAnalyzer::findMutation); in findDeclMutation()
182 const Stmt *ExprMutationAnalyzer::findExprPointeeMutation( in findExprPointeeMutation()
185 &ExprMutationAnalyzer::findPointeeMutation); in findExprPointeeMutation()
188 const Stmt *ExprMutationAnalyzer::findDeclPointeeMutation( in findDeclPointeeMutation()
191 &ExprMutationAnalyzer::findPointeeMutation); in findDeclPointeeMutation()
194 const Stmt *ExprMutationAnalyzer::findDirectMutation(const Expr *Exp) { in findDirectMutation()
277 const Stmt *ExprMutationAnalyzer::findMemberMutation(const Expr *Exp) { in findMemberMutation()
288 const Stmt *ExprMutationAnalyzer::findArrayElementMutation(const Expr *Exp) { in findArrayElementMutation()
297 const Stmt *ExprMutationAnalyzer::findCastMutation(const Expr *Exp) { in findCastMutation()
319 const Stmt *ExprMutationAnalyzer::findRangeLoopMutation(const Expr *Exp) { in findRangeLoopMutation()
331 const Stmt *ExprMutationAnalyzer::findReferenceMutation(const Expr *Exp) { in findReferenceMutation()
365 const Stmt *ExprMutationAnalyzer::findFunctionArgMutation(const Expr *Exp) { in findFunctionArgMutation()
422 ExprMutationAnalyzer InitAnalyzer(*Init->getInit(), Context); in FunctionParmMutationAnalyzer()