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);
92 return findPointeeMutation(Exp) != nullptr; in isPointeeMutated()
95 return findPointeeMutation(Dec) != nullptr; in isPointeeMutated()
97 const Stmt *findPointeeMutation(const Expr *Exp) { in findPointeeMutation() function
98 return A.findPointeeMutation(Exp); in findPointeeMutation()
100 const Stmt *findPointeeMutation(const Decl *Dec) { in findPointeeMutation() function
101 return A.findPointeeMutation(Dec); in findPointeeMutation()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp221 ExprMutationAnalyzer::Analyzer::findPointeeMutation(const Expr *Exp) { in findPointeeMutation() function in clang::ExprMutationAnalyzer::Analyzer
226 ExprMutationAnalyzer::Analyzer::findPointeeMutation(const Decl *Dec) { in findPointeeMutation() function in clang::ExprMutationAnalyzer::Analyzer
228 &ExprMutationAnalyzer::Analyzer::findPointeeMutation); in findPointeeMutation()
324 Matches, this, &ExprMutationAnalyzer::Analyzer::findPointeeMutation); in findExprPointeeMutation()
330 Matches, this, &ExprMutationAnalyzer::Analyzer::findPointeeMutation); in findDeclPointeeMutation()