HomeSort by relevance Sort by last modified time
    Searched defs:DRE (Results 1 - 16 of 16) 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 293 if (const DeclRefExpr *DRE =
295 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
297 return FindVarResult(VD, DRE);
334 Class get(const DeclRefExpr *DRE) const {
336 = Classification.find(DRE);
340 const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl());
351 const DeclRefExpr *DRE
353 if (DRE && DRE->getDecl() == VD)
354 return DRE;
    [all...]
  /external/clang/lib/AST/
ASTDiagnostic.cpp     [all...]
Expr.cpp     [all...]
ItaniumMangle.cpp     [all...]
StmtPrinter.cpp 660 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(*I)) {
662 cast<NamedDecl>(DRE->getDecl())->printQualifiedName(OS);
    [all...]
  /external/clang/lib/Sema/
SemaOpenMP.cpp     [all...]
SemaTemplateDeduction.cpp 155 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
156 return dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl());
    [all...]
SemaTemplate.cpp     [all...]
SemaChecking.cpp 502 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
520 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
537 Diag(DRE->getLocStart(), diag::ext_typecheck_convert_discards_qualifiers)
555 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer_intfltptr)
563 Diag(DRE->getLocStart(), diag::err_atomic_exclusive_builtin_pointer_size)
577 Diag(DRE->getLocStart(), diag::err_arc_atomic_ownership)
    [all...]
SemaDecl.cpp     [all...]
SemaExpr.cpp     [all...]
SemaOverload.cpp 57 DeclRefExpr *DRE = new (S.Context) DeclRefExpr(Fn, false, Fn->getType(),
60 DRE->setHadMultipleCandidates(true);
62 S.MarkDeclRefReferenced(DRE);
64 ExprResult E = DRE;
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 402 Stmt *RewriteLocalVariableExternalStorage(DeclRefExpr *DRE);
    [all...]
RewriteObjC.cpp 327 Stmt *RewriteLocalVariableExternalStorage(DeclRefExpr *DRE);
    [all...]

Completed in 437 milliseconds