Home
last modified time | relevance | path

Searched refs:body_empty (Results 1 – 8 of 8) sorted by relevance

/external/clang/lib/ARCMigrate/
DTransEmptyStatementsAndDealloc.cpp90 if (S->body_empty()) in VisitCompoundStmt()
/external/clang/include/clang/AST/
DStmt.h562 bool body_empty() const { return CompoundStmtBits.NumStmts == 0; } in body_empty() function
568 Stmt *body_back() { return !body_empty() ? Body[size()-1] : 0; } in body_back()
571 assert(!body_empty() && "setLastStmt"); in setLastStmt()
578 const Stmt *body_back() const { return !body_empty() ? Body[size()-1] : 0; } in body_back()
/external/clang/lib/StaticAnalyzer/Core/
DPathDiagnostic.cpp635 if (!CS->body_empty()) { in createDeclBegin()
DExprEngine.cpp1092 if (SE->getSubStmt()->body_empty()) { in Visit()
/external/clang/lib/AST/
DDecl.cpp2141 if (isa<CompoundStmt>(S) && cast<CompoundStmt>(S)->body_empty()) in hasTrivialBody()
DExpr.cpp2138 if (!CS->body_empty()) { in isUnusedResultAWarning()
/external/clang/lib/Sema/
DSemaStmt.cpp1496 if (!CS || CS->body_empty()) return; in CheckForRedundantIteration()
DSemaExpr.cpp9692 if (!Compound->body_empty()) { in ActOnStmtExpr()