| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| H A D | LoopWidening.cpp | 37 return cast<DoStmt>(LoopStmt)->getCond(); in getLoopCondition() 49 isa<DoStmt>(LoopStmt)); in getWidenedLoopState()
|
| H A D | LoopUnrolling.cpp | 72 return S && (isa<ForStmt>(S) || isa<WhileStmt>(S) || isa<DoStmt>(S)); in isLoopStmt()
|
| H A D | CoreEngine.cpp | 341 HandleBranch(cast<DoStmt>(Term)->getCond(), Term, B, Pred); in HandleBlockExit()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | IdenticalExprChecker.cpp | 394 const DoStmt *DStmt1 = cast<DoStmt>(Stmt1); in isIdenticalStmt() 395 const DoStmt *DStmt2 = cast<DoStmt>(Stmt2); in isIdenticalStmt()
|
| H A D | UnreachableCodeChecker.cpp | 156 if (isa<DoStmt>(Parent)) in checkEndAnalysis()
|
| H A D | MallocOverflowSecurityChecker.cpp | 251 void VisitDoStmt(DoStmt *S) { in VisitDoStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CodeGenPGO.cpp | 94 DoStmt, enumerator 263 DEFINE_NESTABLE_TRAVERSAL(DoStmt) in DEFINE_NESTABLE_TRAVERSAL() 280 return PGOHash::DoStmt; in DEFINE_NESTABLE_TRAVERSAL() 512 void VisitDoStmt(const DoStmt *S) { in VisitDoStmt()
|
| H A D | CGStmt.cpp | 149 case Stmt::DoStmtClass: EmitDoStmt(cast<DoStmt>(*S), Attrs); break; in EmitStmt() 889 void CodeGenFunction::EmitDoStmt(const DoStmt &S, in EmitDoStmt()
|
| H A D | CodeGenFunction.cpp | 1440 if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) || isa<DoStmt>(S) || in containsBreak() 1463 isa<DoStmt>(S) || isa<ForStmt>(S) || isa<CompoundStmt>(S) || in mightAddDeclToScope()
|
| H A D | CoverageMappingGen.cpp | 1113 void VisitDoStmt(const DoStmt *S) { in VisitDoStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | ParentMap.cpp | 201 return DirectChild == cast<DoStmt>(P)->getCond(); in isConsumedExpr()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/ARCMigrate/ |
| H A D | TransEmptyStatementsAndDealloc.cpp | 119 bool VisitDoStmt(DoStmt *S) { in VisitDoStmt()
|
| H A D | Transforms.cpp | 274 bool VisitDoStmt(DoStmt *S) { in VisitDoStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| H A D | ReachableCode.cpp | 53 if (const DoStmt *DS = dyn_cast<DoStmt>(Term)) { in isTrivialDoWhile()
|
| H A D | LiveVariables.cpp | 300 AddLiveExpr(val.liveExprs, LV.ESetFact, cast<DoStmt>(S)->getCond()); in Visit()
|
| H A D | CFG.cpp | 570 CFGBlock *VisitDoStmt(DoStmt *D); 2235 return VisitDoStmt(cast<DoStmt>(S)); in Visit() 3886 CFGBlock *CFGBuilder::VisitDoStmt(DoStmt *D) { in VisitDoStmt() 5272 void VisitDoStmt(DoStmt *D) { in VisitDoStmt() 5979 E = cast<DoStmt>(Terminator)->getCond(); in getTerminatorCondition()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaStmtAttr.cpp | 87 if (!isa<DoStmt, ForStmt, CXXForRangeStmt, WhileStmt>(St)) { in handleLoopHintAttr()
|
| H A D | SemaAvailability.cpp | 588 return cast<DoStmt>(Parent)->getBody() == S; in isBodyLikeChildStmt()
|
| H A D | AnalysisBasedWarnings.cpp | 943 Range = cast<DoStmt>(Term)->getCond()->getSourceRange(); in DiagUninitUse() 1341 if (!cast<DoStmt>(S)->getCond()->EvaluateAsInt(Result, Ctx)) in isInLoop()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 15 def DoStmt : StmtNode<Stmt>;
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | Stmt.h | 213 friend class DoStmt; variable 2449 class DoStmt : public Stmt { 2456 DoStmt(Stmt *Body, Expr *Cond, SourceLocation DL, SourceLocation WL, in DoStmt() function 2465 explicit DoStmt(EmptyShell Empty) : Stmt(DoStmtClass, Empty) {} in DoStmt() function
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 2152 extern const internal::VariadicDynCastAllOfMatcher<Stmt, DoStmt> doStmt; 5139 AST_POLYMORPHIC_SUPPORTED_TYPES(IfStmt, ForStmt, WhileStmt, DoStmt, in AST_POLYMORPHIC_MATCHER_P() argument 5283 AST_POLYMORPHIC_SUPPORTED_TYPES(DoStmt, ForStmt, in AST_POLYMORPHIC_MATCHER_P() argument
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 884 const internal::VariadicDynCastAllOfMatcher<Stmt, DoStmt> doStmt;
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 4568 isa<DoStmt>(S) || isa<ForStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer() 4734 isa<DoStmt>(S) || isa<ForStmt>(S)) { in RewriteFunctionBodyOrGlobalInitializer() 4737 isa<DoStmt>(Stmts.back()) || isa<ForStmt>(Stmts.back())) in RewriteFunctionBodyOrGlobalInitializer()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 284 void ASTStmtReader::VisitDoStmt(DoStmt *S) { in VisitDoStmt() 2754 S = new (Context) DoStmt(Empty); in ReadStmtFromStream()
|