HomeSort by relevance Sort by last modified time
    Searched refs:EWC (Results 1 - 9 of 9) sorted by null

  /external/clang/lib/Sema/
JumpDiagnostics.cpp 171 const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init);
172 if (EWC)
173 Init = EWC->getSubExpr();
469 if (ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(SubStmt)) {
470 for (unsigned i = 0, e = EWC->getNumObjects(); i != e; ++i) {
471 const BlockDecl *BDecl = EWC->getObject(i);
  /external/clang/lib/ARCMigrate/
TransAutoreleasePool.cpp 406 if (ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(S))
407 S = EWC->getSubExpr();
TransRetainReleaseDealloc.cpp 385 if (ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Rec))
386 Rec = EWC->getSubExpr()->IgnoreParenImpCasts();
Transforms.cpp 80 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(E))
81 E = EWC->getSubExpr();
  /external/clang/lib/Analysis/
LiveVariables.cpp 250 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(S)) {
251 S = EWC->getSubExpr();
ThreadSafety.cpp 444 } else if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Exp)) {
445 return buildSExpr(EWC->getSubExpr(), CallCtx, NDeref);
    [all...]
CFG.cpp 778 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init)) {
779 Init = EWC->getSubExpr();
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 784 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(S))
785 S = EWC->getSubExpr();
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 218 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(E)) {
219 CGF.enterFullExpression(EWC);
222 return EmitExprForReferenceBinding(CGF, EWC->getSubExpr(),
    [all...]

Completed in 198 milliseconds