Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/lib/ARCMigrate/
HDTransEmptyStatementsAndDealloc.cpp90 if (S->body_empty()) in VisitCompoundStmt()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDStmt.h579 bool body_empty() const { return CompoundStmtBits.NumStmts == 0; } in body_empty() function
588 Stmt *body_front() { return !body_empty() ? Body[0] : nullptr; } in body_front()
589 Stmt *body_back() { return !body_empty() ? Body[size()-1] : nullptr; } in body_back()
592 assert(!body_empty() && "setLastStmt"); in setLastStmt()
605 return !body_empty() ? Body[0] : nullptr; in body_front()
608 return !body_empty() ? Body[size() - 1] : nullptr; in body_back()
/NextBSD/contrib/llvm/tools/lldb/source/Expression/
HDASTResultSynthesizer.cpp234 if (Body->body_empty()) in SynthesizeBodyResult()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCoverageMappingGen.cpp762 if (!CS->body_empty()) { in VisitSwitchStmt()
/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
HDPathDiagnostic.cpp649 if (!CS->body_empty()) { in createDeclBegin()
HDExprEngine.cpp1262 if (SE->getSubStmt()->body_empty()) { in Visit()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDDecl.cpp2388 if (isa<CompoundStmt>(S) && cast<CompoundStmt>(S)->body_empty()) in hasTrivialBody()
HDExpr.cpp2255 if (!CS->body_empty()) { in isUnusedResultAWarning()
HDExprConstant.cpp4279 if (CS->body_empty()) in VisitStmtExpr()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaStmt.cpp1561 if (!CS || CS->body_empty()) return; in CheckForRedundantIteration()
HDSemaExpr.cpp10915 if (!Compound->body_empty()) { in ActOnStmtExpr()