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

  /external/clang/lib/Sema/
JumpDiagnostics.cpp 171 const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init);
172 if (EWC)
173 Init = EWC->getSubExpr();
474 if (ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(SubStmt)) {
475 for (unsigned i = 0, e = EWC->getNumObjects(); i != e; ++i) {
476 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 865 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Ex))
866 return peelOffOuterExpr(EWC->getSubExpr(), N);
    [all...]

Completed in 489 milliseconds