HomeSort by: relevance | last modified time | path
    Searched refs:DeclRef (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Analysis/
Consumed.cpp 507 void VisitDeclRefExpr(const DeclRefExpr *DeclRef);
832 void ConsumedStmtVisitor::VisitDeclRefExpr(const DeclRefExpr *DeclRef) {
833 if (const auto *Var = dyn_cast_or_null<VarDecl>(DeclRef->getDecl()))
835 PropagationMap.insert(PairType(DeclRef, PropagationInfo(Var)));
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCoroutine.cpp 303 ExprResult DeclRef =
305 assert(DeclRef.isUsable() && "Builtin reference cannot fail");
308 S.BuildCallExpr(/*Scope=*/nullptr, DeclRef.get(), Loc, CallArgs, Loc);
1185 if (auto *DeclRef = dyn_cast_or_null<DeclRefExpr>(E)) {
1186 auto *Decl = DeclRef->getDecl();
1612 ExprResult declRef = S.BuildDeclRefExpr(GroDecl, GroType, VK_LValue, Loc);
1613 if (declRef.isInvalid())
1616 StmtResult ReturnStmt = S.BuildReturnStmt(Loc, declRef.get());
Sema.cpp 2282 if (const DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E.IgnoreParens())) {
2283 if (const FunctionDecl *Fun = dyn_cast<FunctionDecl>(DeclRef->getDecl())) {
SemaStmt.cpp 1323 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(PrevCase)) {
1324 PrevString = DeclRef->getDecl()->getName();
1326 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(CurrCase)) {
1327 CurrString = DeclRef->getDecl()->getName();
SemaExpr.cpp 4181 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E->IgnoreParens())) {
4182 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) {
12858 DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts());
12859 if (declRef && isa<VarDecl>(declRef->getDecl())) {
12860 VarDecl *var = cast<VarDecl>(declRef->getDecl());
16418 const DeclRefExpr *DeclRef = CheckPossibleDeref(*this, E);
16419 if (DeclRef) {
16420 const ValueDecl *Decl = DeclRef->getDecl();
16462 if (auto *DeclRef
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp 3864 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E)) {
3865 if (FieldDecl *Field = dyn_cast<FieldDecl>(DeclRef->getDecl()))
3869 if (BindingDecl *BD = dyn_cast<BindingDecl>(DeclRef->getDecl()))

Completed in 33 milliseconds