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

/freebsd-12-stable/contrib/llvm-project/clang/lib/Analysis/
H A DConsumed.cpp507 void VisitDeclRefExpr(const DeclRefExpr *DeclRef);
832 void ConsumedStmtVisitor::VisitDeclRefExpr(const DeclRefExpr *DeclRef) { argument
833 if (const auto *Var = dyn_cast_or_null<VarDecl>(DeclRef->getDecl()))
835 PropagationMap.insert(PairType(DeclRef, PropagationInfo(Var)));
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp302 ExprResult DeclRef = local
304 assert(DeclRef.isUsable() && "Builtin reference cannot fail");
307 S.BuildCallExpr(/*Scope=*/nullptr, DeclRef.get(), Loc, CallArgs, Loc);
1055 if (auto *DeclRef = dyn_cast_or_null<DeclRefExpr>(E)) {
1056 auto *Decl = DeclRef->getDecl();
H A DSemaStmt.cpp993 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(PrevCase)) {
994 PrevString = DeclRef->getDecl()->getName();
996 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(CurrCase)) {
997 CurrString = DeclRef->getDecl()->getName();
H A DSema.cpp2038 if (const DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E.IgnoreParens())) {
2039 if (const FunctionDecl *Fun = dyn_cast<FunctionDecl>(DeclRef->getDecl())) {
H A DSemaExpr.cpp4003 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E->IgnoreParens())) {
4004 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) {
15250 const DeclRefExpr *DeclRef = CheckPossibleDeref(*this, E); local
15251 if (DeclRef) {
15252 const ValueDecl *Decl = DeclRef->getDecl();
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp3922 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E)) {
3923 if (FieldDecl *Field = dyn_cast<FieldDecl>(DeclRef->getDecl()))
3927 if (BindingDecl *BD = dyn_cast<BindingDecl>(DeclRef->getDecl()))

Completed in 118 milliseconds