HomeSort by relevance Sort by last modified time
    Searched defs:DRE (Results 1 - 15 of 15) sorted by null

  /external/clang/test/SemaTemplate/
template-id-printing.cpp 17 namespace DRE {
23 // CHECK: DRE::foo<int>;
24 DRE::foo<int>;
25 // CHECK: DRE::template foo<int>;
26 DRE::template foo<int>;
27 // CHECK: DRE::foo<int>();
28 DRE::foo<int>();
29 // CHECK: DRE::template foo<int>();
30 DRE::template foo<int>();
33 } // namespace DRE
    [all...]
  /external/clang/lib/ARCMigrate/
TransProtectedScope.cpp 182 DeclRefExpr *DRE = LocalRefs[i];
183 if (isInRange(DRE->getDecl()->getLocation(), info.Range) &&
184 !isInRange(DRE->getLocation(), info.Range))
  /external/clang/lib/Analysis/
UninitializedValues.cpp 294 if (const DeclRefExpr *DRE =
296 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
298 return FindVarResult(VD, DRE);
335 Class get(const DeclRefExpr *DRE) const {
337 = Classification.find(DRE);
341 const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl());
352 const DeclRefExpr *DRE
354 if (DRE && DRE->getDecl() == VD)
355 return DRE;
    [all...]
  /external/clang/lib/AST/
ASTDiagnostic.cpp     [all...]
Expr.cpp     [all...]
ItaniumMangle.cpp     [all...]
StmtPrinter.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 155 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
156 return dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl());
    [all...]
SemaTemplate.cpp     [all...]
SemaChecking.cpp 467 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
485 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
502 Diag(DRE->getLocStart(), diag::ext_typecheck_convert_discards_qualifiers)
520 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer_intfltptr)
527 Diag(DRE->getLocStart(), diag::err_atomic_exclusive_builtin_pointer_size)
541 Diag(DRE->getLocStart(), diag::err_arc_atomic_ownership)
878 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
    [all...]
SemaDecl.cpp     [all...]
SemaExpr.cpp     [all...]
SemaOverload.cpp 55 DeclRefExpr *DRE = new (S.Context) DeclRefExpr(Fn, false, Fn->getType(),
58 DRE->setHadMultipleCandidates(true);
60 S.MarkDeclRefReferenced(DRE);
62 ExprResult E = S.Owned(DRE);
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp 326 Stmt *RewriteLocalVariableExternalStorage(DeclRefExpr *DRE);
    [all...]
RewriteModernObjC.cpp 387 Stmt *RewriteLocalVariableExternalStorage(DeclRefExpr *DRE);
    [all...]

Completed in 414 milliseconds