Lines Matching refs:ExprMutationAnalyzer
189 template <class T, class F = const Stmt *(ExprMutationAnalyzer::*)(const T *)>
191 ExprMutationAnalyzer *Analyzer, F Finder) { in tryEachMatch()
202 const Stmt *ExprMutationAnalyzer::findMutation(const Expr *Exp) { in findMutation()
204 {&ExprMutationAnalyzer::findDirectMutation, in findMutation()
205 &ExprMutationAnalyzer::findMemberMutation, in findMutation()
206 &ExprMutationAnalyzer::findArrayElementMutation, in findMutation()
207 &ExprMutationAnalyzer::findCastMutation, in findMutation()
208 &ExprMutationAnalyzer::findRangeLoopMutation, in findMutation()
209 &ExprMutationAnalyzer::findReferenceMutation, in findMutation()
210 &ExprMutationAnalyzer::findFunctionArgMutation}, in findMutation()
214 const Stmt *ExprMutationAnalyzer::findMutation(const Decl *Dec) { in findMutation()
215 return tryEachDeclRef(Dec, &ExprMutationAnalyzer::findMutation); in findMutation()
218 const Stmt *ExprMutationAnalyzer::findPointeeMutation(const Expr *Exp) { in findPointeeMutation()
222 const Stmt *ExprMutationAnalyzer::findPointeeMutation(const Decl *Dec) { in findPointeeMutation()
223 return tryEachDeclRef(Dec, &ExprMutationAnalyzer::findPointeeMutation); in findPointeeMutation()
226 const Stmt *ExprMutationAnalyzer::findMutationMemoized( in findMutationMemoized()
244 const Stmt *ExprMutationAnalyzer::tryEachDeclRef(const Decl *Dec, in tryEachDeclRef()
264 bool ExprMutationAnalyzer::isUnevaluated(const Stmt *Exp, const Stmt &Stm, in isUnevaluated()
296 bool ExprMutationAnalyzer::isUnevaluated(const Expr *Exp) { in isUnevaluated()
301 ExprMutationAnalyzer::findExprMutation(ArrayRef<BoundNodes> Matches) { in findExprMutation()
302 return tryEachMatch<Expr>(Matches, this, &ExprMutationAnalyzer::findMutation); in findExprMutation()
306 ExprMutationAnalyzer::findDeclMutation(ArrayRef<BoundNodes> Matches) { in findDeclMutation()
307 return tryEachMatch<Decl>(Matches, this, &ExprMutationAnalyzer::findMutation); in findDeclMutation()
310 const Stmt *ExprMutationAnalyzer::findExprPointeeMutation( in findExprPointeeMutation()
313 &ExprMutationAnalyzer::findPointeeMutation); in findExprPointeeMutation()
316 const Stmt *ExprMutationAnalyzer::findDeclPointeeMutation( in findDeclPointeeMutation()
319 &ExprMutationAnalyzer::findPointeeMutation); in findDeclPointeeMutation()
322 const Stmt *ExprMutationAnalyzer::findDirectMutation(const Expr *Exp) { in findDirectMutation()
446 const Stmt *ExprMutationAnalyzer::findMemberMutation(const Expr *Exp) { in findMemberMutation()
459 const Stmt *ExprMutationAnalyzer::findArrayElementMutation(const Expr *Exp) { in findArrayElementMutation()
472 const Stmt *ExprMutationAnalyzer::findCastMutation(const Expr *Exp) { in findCastMutation()
507 const Stmt *ExprMutationAnalyzer::findRangeLoopMutation(const Expr *Exp) { in findRangeLoopMutation()
570 const Stmt *ExprMutationAnalyzer::findReferenceMutation(const Expr *Exp) { in findReferenceMutation()
602 const Stmt *ExprMutationAnalyzer::findFunctionArgMutation(const Expr *Exp) { in findFunctionArgMutation()
662 ExprMutationAnalyzer InitAnalyzer(*Init->getInit(), Context); in FunctionParmMutationAnalyzer()