Home | History | Annotate | Download | only in Analysis

Lines Matching defs:DRE

294   if (const DeclRefExpr *DRE =
296 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
298 return FindVarResult(VD, DRE);
335 Class get(const DeclRefExpr *DRE) const {
337 = Classification.find(DRE);
341 const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl());
353 const DeclRefExpr *DRE
355 if (DRE && DRE->getDecl() == VD)
356 return DRE;
404 if (const DeclRefExpr *DRE = Var.getDeclRefExpr())
405 Classification[DRE] = std::max(Classification[DRE], C);
412 if (const DeclRefExpr *DRE = getSelfInitExpr(VD))
413 Classification[DRE] = SelfInit;