Home | History | Annotate | Download | only in Analysis

Lines Matching refs:DRE

293   if (const DeclRefExpr *DRE =
295 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
297 return FindVarResult(VD, DRE);
334 Class get(const DeclRefExpr *DRE) const {
336 = Classification.find(DRE);
340 const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl());
351 const DeclRefExpr *DRE
353 if (DRE && DRE->getDecl() == VD)
354 return DRE;
371 if (const DeclRefExpr *DRE = Var.getDeclRefExpr())
372 Classification[DRE] = std::max(Classification[DRE], C);
379 if (const DeclRefExpr *DRE = getSelfInitExpr(VD))
380 Classification[DRE] = SelfInit;