Lines Matching refs:Var
31 static bool isChanged(const Stmt *LoopStmt, const VarDecl *Var, in isChanged() argument
36 .isMutated(Var)) || in isChanged()
39 .isMutated(Var)) || in isChanged()
41 ExprMutationAnalyzer(*ForLoop->getCond(), *Context).isMutated(Var)); in isChanged()
43 return ExprMutationAnalyzer(*LoopStmt, *Context).isMutated(Var); in isChanged()
50 if (const auto *Var = dyn_cast<VarDecl>(DRE->getDecl())) { in isVarThatIsPossiblyChanged() local
51 if (!Var->isLocalVarDeclOrParm()) in isVarThatIsPossiblyChanged()
54 if (Var->getType().isVolatileQualified()) in isVarThatIsPossiblyChanged()
57 if (!Var->getType().getTypePtr()->isIntegerType()) in isVarThatIsPossiblyChanged()
60 return hasPtrOrReferenceInFunc(Func, Var) || in isVarThatIsPossiblyChanged()
61 isChanged(LoopStmt, Var, Context); in isVarThatIsPossiblyChanged()
103 if (const auto *Var = dyn_cast<VarDecl>(DRE->getDecl())) in getCondVarNames() local
104 return std::string(Var->getName()); in getCondVarNames()