/external/clang/lib/AST/ |
D | ExprCXX.cpp | 1022 ExprWithCleanups::ExprWithCleanups(Expr *subexpr, in ExprWithCleanups() function in ExprWithCleanups 1035 ExprWithCleanups *ExprWithCleanups::Create(ASTContext &C, Expr *subexpr, in Create() 1037 size_t size = sizeof(ExprWithCleanups) in Create() 1039 void *buffer = C.Allocate(size, llvm::alignOf<ExprWithCleanups>()); in Create() 1040 return new (buffer) ExprWithCleanups(subexpr, objects); in Create() 1043 ExprWithCleanups::ExprWithCleanups(EmptyShell empty, unsigned numObjects) in ExprWithCleanups() function in ExprWithCleanups 1048 ExprWithCleanups *ExprWithCleanups::Create(ASTContext &C, EmptyShell empty, in Create() 1050 size_t size = sizeof(ExprWithCleanups) + numObjects * sizeof(CleanupObject); in Create() 1051 void *buffer = C.Allocate(size, llvm::alignOf<ExprWithCleanups>()); in Create() 1052 return new (buffer) ExprWithCleanups(empty, numObjects); in Create()
|
D | ParentMap.cpp | 163 isa<ExprWithCleanups>(P))) { in isConsumedExpr()
|
D | DeclPrinter.cpp | 516 if (ExprWithCleanups *Tmp = dyn_cast<ExprWithCleanups>(Init)) in VisitFunctionDecl()
|
D | Stmt.cpp | 103 if (ExprWithCleanups *ewc = dyn_cast<ExprWithCleanups>(s)) in IgnoreImplicit()
|
D | ExprClassification.cpp | 314 return ClassifyInternal(Ctx, cast<ExprWithCleanups>(E)->getSubExpr()); in ClassifyInternal()
|
/external/clang/lib/ARCMigrate/ |
D | TransRetainReleaseDealloc.cpp | 262 isa<ExprWithCleanups>(OuterS))); in getPreviousAndNextStmt() 385 if (ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Rec)) in checkForGCDOrXPC()
|
D | TransAutoreleasePool.cpp | 406 if (ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(S)) in getEssential()
|
D | Transforms.cpp | 80 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(E)) in isPlusOne()
|
D | TransUnbridgedCasts.cpp | 369 } while (parent && isa<ExprWithCleanups>(parent)); in transformObjCToNonObjCCast()
|
/external/clang/test/Misc/ |
D | ast-dump-stmt.m | 14 // CHECK: ExprWithCleanups
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | StackAddrEscapeChecker.cpp | 154 if (const ExprWithCleanups *Cleanup = dyn_cast<ExprWithCleanups>(RetE)) in checkPreStmt()
|
D | LLVMConventionsChecker.cpp | 158 ExprWithCleanups *Ex1 = dyn_cast<ExprWithCleanups>(Init); in VisitVarDecl()
|
D | DeadStoresChecker.cpp | 328 while (const ExprWithCleanups *exprClean = in observeStmt() 329 dyn_cast<ExprWithCleanups>(E)) in observeStmt()
|
/external/clang/lib/Sema/ |
D | JumpDiagnostics.cpp | 171 const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init); in GetDiagForGotoScopeDecl() 474 if (ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(SubStmt)) { in BuildScopeInformation()
|
D | SemaLambda.cpp | 345 ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(retValue); in adjustBlockReturnsToEnum()
|
/external/clang/lib/Analysis/ |
D | CFG.cpp | 376 CFGBlock *VisitExprWithCleanups(ExprWithCleanups *E, AddStmtChoice asc); 745 HasTemporaries = isa<ExprWithCleanups>(Init); in addInitializer() 749 VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(), in addInitializer() 761 return Visit(cast<ExprWithCleanups>(Init)->getSubExpr()); in addInitializer() 778 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init)) { in getReferenceInitTemporaryType() 987 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init)) in addLocalScopeForVarDecl() 1098 return VisitExprWithCleanups(cast<ExprWithCleanups>(S), asc); in Visit() 1687 HasTemporaries = isa<ExprWithCleanups>(Init); in VisitDeclSubExpr() 1691 VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(), in VisitDeclSubExpr() 1708 ExprWithCleanups *EC = cast<ExprWithCleanups>(Init); in VisitDeclSubExpr() [all …]
|
D | LiveVariables.cpp | 250 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(S)) { in LookThroughStmt() 329 S = cast<ExprWithCleanups>(S)->getSubExpr(); in Visit()
|
D | ThreadSafety.cpp | 444 } else if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Exp)) { in buildSExpr() 1639 else if (const ExprWithCleanups* EWC = dyn_cast<ExprWithCleanups>(Cond)) { in getTrylockCallExpr() 2165 if (ExprWithCleanups *EWC = dyn_cast_or_null<ExprWithCleanups>(E)) in VisitDeclStmt()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | Environment.cpp | 32 E = cast<ExprWithCleanups>(E)->getSubExpr(); in ignoreTransparentExprs()
|
D | BugReporterVisitors.cpp | 865 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Ex)) in peelOffOuterExpr()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 125 def ExprWithCleanups : DStmt<Expr>;
|
/external/clang/lib/CodeGen/ |
D | CGObjC.cpp | 775 assert(isa<ExprWithCleanups>(getter)); in hasTrivialGetExpr() 1076 assert(isa<ExprWithCleanups>(setter)); in hasTrivialSetExpr() 2548 assert(!isa<ExprWithCleanups>(e)); in tryEmitARCRetainScalarExpr() 2701 if (const ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(e)) { in EmitARCRetainScalarExpr() 2717 if (const ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(e)) { in EmitARCRetainAutoreleaseScalarExpr()
|
/external/clang/include/clang/AST/ |
D | ExprCXX.h | 2927 class ExprWithCleanups : public Expr { 2938 ExprWithCleanups(EmptyShell, unsigned NumObjects); 2939 ExprWithCleanups(Expr *SubExpr, ArrayRef<CleanupObject> Objects); 2950 static ExprWithCleanups *Create(ASTContext &C, EmptyShell empty, 2953 static ExprWithCleanups *Create(ASTContext &C, Expr *subexpr,
|
/external/chromium_org/v8/tools/gcmole/ |
D | gcmole.cc | 569 VISIT(ExprWithCleanups); in VisitExpr() 717 DECL_VISIT_EXPR(ExprWithCleanups) { in DECL_VISIT_EXPR() argument
|
/external/v8/tools/gcmole/ |
D | gcmole.cc | 569 VISIT(ExprWithCleanups); in VisitExpr() 719 DECL_VISIT_EXPR(ExprWithCleanups) { in DECL_VISIT_EXPR() argument
|