HomeSort by relevance Sort by last modified time
    Searched defs:DRE (Results 1 - 19 of 19) 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))
  /frameworks/compile/slang/
slang_rs_context.cpp 371 clang::DeclRefExpr *const DRE = clang::DeclRefExpr::Create(mCtx,
377 clang::CK_FunctionToPointerDecay, DRE,
slang_rs_foreach_lowering.cpp 60 clang::DeclRefExpr* DRE =
63 if (DRE == nullptr) {
68 clang::dyn_cast<clang::FunctionDecl>(DRE->getDecl());
slang_rs_object_ref_count.cpp     [all...]
  /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());
353 const DeclRefExpr *DRE
355 if (DRE && DRE->getDecl() == VD)
356 return DRE;
    [all...]
  /external/clang/lib/AST/
ASTDiagnostic.cpp     [all...]
Expr.cpp     [all...]
ItaniumMangle.cpp     [all...]
StmtPrinter.cpp 758 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(*I)) {
760 cast<NamedDecl>(DRE->getDecl())->printQualifiedName(OS);
    [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 129 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
130 return dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl());
    [all...]
SemaInit.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaChecking.cpp 252 auto *DRE = cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
254 << DRE->getDecl()->getIdentifier();
766 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
784 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
801 Diag(DRE->getLocStart(), diag::ext_typecheck_convert_discards_qualifiers)
819 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer_intfltptr)
827 Diag(DRE->getLocStart(), diag::err_atomic_exclusive_builtin_pointer_size)
841 Diag(DRE->getLocStart(), diag::err_arc_atomic_ownership)
    [all...]
SemaDecl.cpp     [all...]
SemaExpr.cpp 517 if (auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts()))
518 if (auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl()))
    [all...]
TreeTransform.h 640 ParenExpr *PE, DependentScopeDeclRefExpr *DRE, bool IsAddressOfOperand,
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 393 Stmt *RewriteLocalVariableExternalStorage(DeclRefExpr *DRE);
    [all...]
RewriteObjC.cpp 318 Stmt *RewriteLocalVariableExternalStorage(DeclRefExpr *DRE);
    [all...]

Completed in 121 milliseconds