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 372 clang::DeclRefExpr *const DRE = clang::DeclRefExpr::Create(mCtx,
378 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/
Expr.cpp     [all...]
ItaniumMangle.cpp     [all...]
StmtPrinter.cpp 770 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(*I)) {
771 if (isa<OMPCapturedExprDecl>(DRE->getDecl()))
772 DRE->printPretty(OS, nullptr, Policy, 0);
774 DRE->getDecl()->printQualifiedName(OS);
    [all...]
  /external/clang/lib/Sema/
SemaCast.cpp     [all...]
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 255 auto *DRE = cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
257 << DRE->getDecl()->getIdentifier();
    [all...]
SemaDecl.cpp     [all...]
SemaExpr.cpp 529 if (auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts()))
530 if (auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl()))
    [all...]
TreeTransform.h 649 ParenExpr *PE, DependentScopeDeclRefExpr *DRE, bool IsAddressOfOperand,
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 391 Stmt *RewriteLocalVariableExternalStorage(DeclRefExpr *DRE);
    [all...]
RewriteObjC.cpp 319 Stmt *RewriteLocalVariableExternalStorage(DeclRefExpr *DRE);
    [all...]

Completed in 539 milliseconds