Lines Matching refs:ExprMutationAnalyzer
129 template <class T, class F = const Stmt *(ExprMutationAnalyzer::*)(const T *)>
131 ExprMutationAnalyzer *Analyzer, F Finder) { in tryEachMatch()
142 const Stmt *ExprMutationAnalyzer::findMutation(const Expr *Exp) { in findMutation()
144 {&ExprMutationAnalyzer::findDirectMutation, in findMutation()
145 &ExprMutationAnalyzer::findMemberMutation, in findMutation()
146 &ExprMutationAnalyzer::findArrayElementMutation, in findMutation()
147 &ExprMutationAnalyzer::findCastMutation, in findMutation()
148 &ExprMutationAnalyzer::findRangeLoopMutation, in findMutation()
149 &ExprMutationAnalyzer::findReferenceMutation, in findMutation()
150 &ExprMutationAnalyzer::findFunctionArgMutation}, in findMutation()
154 const Stmt *ExprMutationAnalyzer::findMutation(const Decl *Dec) { in findMutation()
155 return tryEachDeclRef(Dec, &ExprMutationAnalyzer::findMutation); in findMutation()
158 const Stmt *ExprMutationAnalyzer::findPointeeMutation(const Expr *Exp) { in findPointeeMutation()
162 const Stmt *ExprMutationAnalyzer::findPointeeMutation(const Decl *Dec) { in findPointeeMutation()
163 return tryEachDeclRef(Dec, &ExprMutationAnalyzer::findPointeeMutation); in findPointeeMutation()
166 const Stmt *ExprMutationAnalyzer::findMutationMemoized( in findMutationMemoized()
184 const Stmt *ExprMutationAnalyzer::tryEachDeclRef(const Decl *Dec, in tryEachDeclRef()
197 bool ExprMutationAnalyzer::isUnevaluated(const Expr *Exp) { in isUnevaluated()
229 ExprMutationAnalyzer::findExprMutation(ArrayRef<BoundNodes> Matches) { in findExprMutation()
230 return tryEachMatch<Expr>(Matches, this, &ExprMutationAnalyzer::findMutation); in findExprMutation()
234 ExprMutationAnalyzer::findDeclMutation(ArrayRef<BoundNodes> Matches) { in findDeclMutation()
235 return tryEachMatch<Decl>(Matches, this, &ExprMutationAnalyzer::findMutation); in findDeclMutation()
238 const Stmt *ExprMutationAnalyzer::findExprPointeeMutation( in findExprPointeeMutation()
241 &ExprMutationAnalyzer::findPointeeMutation); in findExprPointeeMutation()
244 const Stmt *ExprMutationAnalyzer::findDeclPointeeMutation( in findDeclPointeeMutation()
247 &ExprMutationAnalyzer::findPointeeMutation); in findDeclPointeeMutation()
250 const Stmt *ExprMutationAnalyzer::findDirectMutation(const Expr *Exp) { in findDirectMutation()
376 const Stmt *ExprMutationAnalyzer::findMemberMutation(const Expr *Exp) { in findMemberMutation()
388 const Stmt *ExprMutationAnalyzer::findArrayElementMutation(const Expr *Exp) { in findArrayElementMutation()
402 const Stmt *ExprMutationAnalyzer::findCastMutation(const Expr *Exp) { in findCastMutation()
439 const Stmt *ExprMutationAnalyzer::findRangeLoopMutation(const Expr *Exp) { in findRangeLoopMutation()
500 const Stmt *ExprMutationAnalyzer::findReferenceMutation(const Expr *Exp) { in findReferenceMutation()
534 const Stmt *ExprMutationAnalyzer::findFunctionArgMutation(const Expr *Exp) { in findFunctionArgMutation()
594 ExprMutationAnalyzer InitAnalyzer(*Init->getInit(), Context); in FunctionParmMutationAnalyzer()