Home | History | Annotate | Download | only in Checkers

Lines Matching full:dyn_cast

158     if (VarDecl* VD = dyn_cast<VarDecl>(DR->getDecl()))
167 BinaryOperator* BRHS = dyn_cast<BinaryOperator>(RHS);
174 if ((DR = dyn_cast<DeclRefExpr>(BRHS->getLHS()->IgnoreParenCasts())))
178 if ((DR = dyn_cast<DeclRefExpr>(BRHS->getRHS()->IgnoreParenCasts())))
197 if (BinaryOperator* B = dyn_cast<BinaryOperator>(S)) {
200 if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(B->getLHS()))
201 if (VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
214 if (DeclRefExpr* RhsDR = dyn_cast<DeclRefExpr>(RHS))
215 if (VD == dyn_cast<VarDecl>(RhsDR->getDecl()))
226 else if (UnaryOperator* U = dyn_cast<UnaryOperator>(S)) {
236 if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(Ex))
239 else if (DeclStmt* DS = dyn_cast<DeclStmt>(S))
245 VarDecl* V = dyn_cast<VarDecl>(*DI);
257 while (ExprWithCleanups *exprClean = dyn_cast<ExprWithCleanups>(E))
279 if (DeclRefExpr *DRE=dyn_cast<DeclRefExpr>(E->IgnoreParenCasts()))
280 if (VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl())) {
328 if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(E))
329 if (VarDecl* VD = dyn_cast<VarDecl>(DR->getDecl())) {