Home
last modified time | relevance | path

Searched refs:findPointeeMutation (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DExprMutationAnalyzer.h48 const Stmt *findPointeeMutation(const Expr *Exp);
49 const Stmt *findPointeeMutation(const Decl *Dec);
96 return findPointeeMutation(Exp) != nullptr; in isPointeeMutated()
99 return findPointeeMutation(Dec) != nullptr; in isPointeeMutated()
101 const Stmt *findPointeeMutation(const Expr *Exp) { in findPointeeMutation() function
102 return A.findPointeeMutation(Exp); in findPointeeMutation()
104 const Stmt *findPointeeMutation(const Decl *Dec) { in findPointeeMutation() function
105 return A.findPointeeMutation(Dec); in findPointeeMutation()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp277 ExprMutationAnalyzer::Analyzer::findPointeeMutation(const Expr *Exp) { in findPointeeMutation() function in clang::ExprMutationAnalyzer::Analyzer
289 ExprMutationAnalyzer::Analyzer::findPointeeMutation(const Decl *Dec) { in findPointeeMutation() function in clang::ExprMutationAnalyzer::Analyzer
291 &ExprMutationAnalyzer::Analyzer::findPointeeMutation); in findPointeeMutation()
374 Matches, this, &ExprMutationAnalyzer::Analyzer::findPointeeMutation); in findExprPointeeMutation()
380 Matches, this, &ExprMutationAnalyzer::Analyzer::findPointeeMutation); in findDeclPointeeMutation()