Searched refs:DeclRef (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/Analysis/
H A DConsumed.cpp498 void VisitDeclRefExpr(const DeclRefExpr *DeclRef);
840 void ConsumedStmtVisitor::VisitDeclRefExpr(const DeclRefExpr *DeclRef) { argument
841 if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(DeclRef->getDecl()))
843 PropagationMap.insert(PairType(DeclRef, PropagationInfo(Var)));
/external/clang/lib/Sema/
H A DSema.cpp1292 if (const DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E.IgnoreParens())) {
1293 if (const FunctionDecl *Fun = dyn_cast<FunctionDecl>(DeclRef->getDecl())) {
H A DSemaStmt.cpp868 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(PrevCase)) {
869 PrevString = DeclRef->getDecl()->getName();
871 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(CurrCase)) {
872 CurrString = DeclRef->getDecl()->getName();
H A DSemaExpr.cpp3450 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E->IgnoreParens())) {
3451 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) {
11772 Expr *DeclRef = new (S.Context) DeclRefExpr(Var, Nested, local
11780 Loc, DeclRef);
/external/clang/lib/AST/
H A DExpr.cpp3266 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E))
3267 if (FieldDecl *Field = dyn_cast<FieldDecl>(DeclRef->getDecl()))

Completed in 970 milliseconds