HomeSort by relevance Sort by last modified time
    Searched refs:DeclRefExpr (Results 26 - 50 of 87) sorted by null

12 3 4

  /external/clang/lib/ARCMigrate/
TransZeroOutPropsInDealloc.cpp 52 DeclRefExpr *refE = dyn_cast<DeclRefExpr>(receiver->IgnoreParenCasts());
Transforms.cpp 138 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
161 bool VisitDeclRefExpr(DeclRefExpr *E) { Refs.erase(E); return true; }
172 bool VisitDeclRefExpr(DeclRefExpr *E) {
TransUnbridgedCasts.cpp 322 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 70 if (DeclRefExpr *E = dyn_cast<DeclRefExpr>(Receiver))
MacOSKeychainAPIChecker.cpp 174 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
392 if (const DeclRefExpr *DE = dyn_cast<DeclRefExpr>(DeallocatorExpr)) {
  /external/clang/lib/Rewrite/
RewriteObjC.cpp 122 SmallVector<DeclRefExpr *, 32> InnerDeclRefs;
124 SmallVector<DeclRefExpr *, 32> BlockDeclRefs;
323 Stmt *RewriteBlockDeclRefExpr(DeclRefExpr *VD);
324 Stmt *RewriteLocalVariableExternalStorage(DeclRefExpr *DRE);
391 const SmallVector<DeclRefExpr *, 8> &InnerBlockDeclRefs);
405 SmallVector<DeclRefExpr *, 8> &InnerBlockDeclRefs,
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 199 const DeclRefExpr *DR,
  /external/clang/lib/AST/
Expr.cpp 229 void DeclRefExpr::computeDependence(ASTContext &Ctx) {
263 DeclRefExpr::DeclRefExpr(ASTContext &Ctx,
300 DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
316 DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
330 std::size_t Size = sizeof(DeclRefExpr);
340 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
341 return new (Mem) DeclRefExpr(Context, QualifierLoc, TemplateKWLoc, D
    [all...]
ExprClassification.cpp 189 return isa<FunctionDecl>(cast<DeclRefExpr>(E)->getDecl())
191 return ClassifyDecl(Ctx, cast<DeclRefExpr>(E)->getDecl());
StmtDumper.cpp 138 void VisitDeclRefExpr(DeclRefExpr *Node);
371 void StmtDumper::VisitDeclRefExpr(DeclRefExpr *Node) {
ExprConstant.cpp     [all...]
  /external/clang/tools/libclang/
IndexBody.cpp 42 bool VisitDeclRefExpr(DeclRefExpr *E) {
CIndex.cpp     [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp 88 /// Recursive function that terminates on DeclRefExpr.
98 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Exp)) {
637 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(LHSExp)) {
    [all...]
AnalysisDeclContext.cpp 356 void VisitDeclRefExpr(DeclRefExpr *DR) {
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 401 const DeclRefExpr *Needle;
404 ContainsReference(ASTContext &Context, const DeclRefExpr *Needle)
416 void VisitDeclRefExpr(DeclRefExpr *E) {
461 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
    [all...]
SemaExpr.cpp     [all...]
SemaFixItUtils.cpp 70 isa<DeclRefExpr>(Expr) ||
SemaObjCProperty.cpp     [all...]
  /external/v8/tools/gcmole/
gcmole.cc 139 virtual bool VisitDeclRefExpr(clang::DeclRefExpr* expr) {
566 VISIT(DeclRefExpr);
663 } else if (isa<clang::DeclRefExpr>(expr)) {
664 *var_name = cast<clang::DeclRefExpr>(expr)->getDecl()->getNameAsString();
767 DECL_VISIT_EXPR(DeclRefExpr) {
    [all...]
  /external/clang/include/clang/AST/
Expr.h 760 class DeclRefExpr : public Expr {
779 return const_cast<DeclRefExpr *>(this)->getInternalQualifierLoc();
798 return const_cast<DeclRefExpr *>(this)->getInternalFoundDecl();
801 DeclRefExpr(ASTContext &Ctx,
811 explicit DeclRefExpr(EmptyShell Empty)
819 DeclRefExpr(ValueDecl *D, bool refersToEnclosingLocal, QualType T,
    [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 244 const DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(ice->getSubExpr());
    [all...]
CGExprAgg.cpp 112 void VisitDeclRefExpr(DeclRefExpr *E) {
689 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->getLHS()))
    [all...]
CGDecl.cpp 405 DeclRefExpr DRE(const_cast<VarDecl*>(&Var), false,
422 DeclRefExpr DRE(const_cast<VarDecl*>(&Var), false,
490 if (const DeclRefExpr *ref = dyn_cast<DeclRefExpr>(e))
    [all...]
CGExpr.cpp 619 if (!isa<DeclRefExpr>(E) && !LV.isBitField() && LV.isSimple())
665 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
797 CodeGenFunction::tryEmitAsConstant(DeclRefExpr *refExpr) {
    [all...]

Completed in 414 milliseconds

12 3 4