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

  /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());
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...]

Completed in 25 milliseconds