| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/utils/ |
| H A D | LexerUtils.cpp | 158 return isa<Expr, DoStmt, ReturnStmt, BreakStmt, ContinueStmt, GotoStmt, SEHLeaveStmt>(S); in breakAndReturnEndPlus1Token()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CodeGenPGO.cpp | 115 BreakStmt, enumerator 340 return PGOHash::BreakStmt; in DEFINE_NESTABLE_TRAVERSAL() 471 void VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
|
| H A D | CGStmt.cpp | 453 EmitBreakStmt(cast<BreakStmt>(*S)); in EmitSimpleStmt() 1380 void CodeGenFunction::EmitBreakStmt(const BreakStmt &S) { in EmitBreakStmt() 1535 isa<BreakStmt>(S.getSubStmt())) { in EmitCaseStmt() 1677 if (!Case && isa<BreakStmt>(S)) in CollectStatementsForCase()
|
| H A D | CoverageMappingGen.cpp | 1054 void VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
|
| H A D | CodeGenFunction.cpp | 1518 if (isa<BreakStmt>(S)) in containsBreak()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/ |
| H A D | ElseAfterReturnCheck.cpp | 232 if (isa<BreakStmt>(Stmt)) in getControlFlowString()
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 20 def BreakStmt : StmtNode<Stmt>;
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | Stmt.h | 253 friend class BreakStmt; in alignas() local 2755 class BreakStmt : public Stmt { 2757 BreakStmt(SourceLocation BL) : Stmt(BreakStmtClass) { in BreakStmt() function 2762 explicit BreakStmt(EmptyShell Empty) : Stmt(BreakStmtClass, Empty) {} in BreakStmt() function
|
| H A D | RecursiveASTVisitor.h | 2387 DEF_TRAVERSE_STMT(BreakStmt, {})
|
| /llvm-project-15.0.7/clang/lib/Analysis/ |
| H A D | ReachableCode.cpp | 615 if (isa<BreakStmt>(S)) { in reportDeadCode()
|
| H A D | CFG.cpp | 546 CFGBlock *VisitBreakStmt(BreakStmt *B); 2161 return VisitBreakStmt(cast<BreakStmt>(S)); in Visit() 2594 CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) { in VisitBreakStmt()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/refactor/tweaks/ |
| H A D | ExtractFunction.cpp | 629 bool VisitBreakStmt(BreakStmt *Break) { in captureZoneInfo()
|
| /llvm-project-15.0.7/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 900 const internal::VariadicDynCastAllOfMatcher<Stmt, BreakStmt> breakStmt;
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/ |
| H A D | XRefs.cpp | 1063 bool VisitBreakStmt(BreakStmt *B) { in VisitBreakStmt() 1138 if (N.ASTNode.get<BreakStmt>()) { in relatedControlFlow()
|
| /llvm-project-15.0.7/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 308 Stmt *RewriteBreakStmt(BreakStmt *S); 1417 Stmt *RewriteObjC::RewriteBreakStmt(BreakStmt *S) { in RewriteBreakStmt() 4668 if (BreakStmt *StmtBreakStmt = in RewriteFunctionBodyOrGlobalInitializer() 4669 dyn_cast<BreakStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
|
| H A D | RewriteModernObjC.cpp | 366 Stmt *RewriteBreakStmt(BreakStmt *S); 1609 Stmt *RewriteModernObjC::RewriteBreakStmt(BreakStmt *S) { in RewriteBreakStmt() 5563 if (BreakStmt *StmtBreakStmt = in RewriteFunctionBodyOrGlobalInitializer() 5564 dyn_cast<BreakStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 1837 void VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt() 2006 void VisitBreakStmt(const BreakStmt* E) { in VisitBreakStmt() 3346 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
|
| H A D | AnalysisBasedWarnings.cpp | 1302 if (!(B->empty() && Term && isa<BreakStmt>(Term))) { in DiagnoseSwitchLabelsFallthrough()
|
| /llvm-project-15.0.7/clang/lib/Tooling/Syntax/ |
| H A D | BuildTree.cpp | 1501 bool WalkUpFromBreakStmt(BreakStmt *S) { in WalkUpFromBreakStmt()
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 328 void ASTStmtReader::VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt() 2842 S = new (Context) BreakStmt(Empty); in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 254 void ASTStmtWriter::VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | StmtProfile.cpp | 303 void StmtProfiler::VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
|
| H A D | StmtPrinter.cpp | 471 void StmtPrinter::VisitBreakStmt(BreakStmt *Node) { in VisitBreakStmt()
|
| /llvm-project-15.0.7/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 2187 extern const internal::VariadicDynCastAllOfMatcher<Stmt, BreakStmt> breakStmt;
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/ |
| H A D | BugReporter.cpp | 1317 } else if (isa<BreakStmt, ContinueStmt, GotoStmt>(Term)) { in generatePathDiagnosticsForNode()
|