Searched refs:areSameVariable (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/clang-tools-extra/clang-tidy/modernize/ |
D | LoopConvertUtils.cpp | 203 bool areSameVariable(const ValueDecl *First, const ValueDecl *Second) { in areSameVariable() function 214 return Decl && areSameVariable(Target, Decl->getDecl()); in exprReferencesVariable() 257 areSameVariable(IndexVar, Idx->getDecl()); in isIndexInSubscriptExpr() 747 if (areSameVariable(IndexVar, TheDecl) || in VisitDeclRefExpr() 748 exprReferencesVariable(IndexVar, E) || areSameVariable(EndVar, TheDecl) || in VisitDeclRefExpr() 783 if (areSameVariable(IndexVar, cast<ValueDecl>(VDecl))) { in TraverseLambdaCapture()
|
D | LoopConvertCheck.cpp | 847 if (!areSameVariable(LoopVar, CondVar) || !areSameVariable(LoopVar, InitVar)) in isConvertible() 851 if (EndVar && !areSameVariable(EndVar, ConditionEndVar)) in isConvertible()
|
D | LoopConvertUtils.h | 281 bool areSameVariable(const ValueDecl *First, const ValueDecl *Second);
|
/external/llvm-project/clang/docs/ |
D | LibASTMatchersTutorial.rst | 499 if (!areSameVariable(IncVar, CondVar) || !areSameVariable(IncVar, InitVar)) 511 static bool areSameVariable(const ValueDecl *First, const ValueDecl *Second) {
|
/external/clang/docs/ |
D | LibASTMatchersTutorial.rst | 507 if (!areSameVariable(IncVar, CondVar) || !areSameVariable(IncVar, InitVar)) 519 static bool areSameVariable(const ValueDecl *First, const ValueDecl *Second) {
|