Home
last modified time | relevance | path

Searched refs:BreakStmt (Results 1 – 25 of 28) sorted by relevance

12

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/utils/
H A DLexerUtils.cpp158 return isa<Expr, DoStmt, ReturnStmt, BreakStmt, ContinueStmt, GotoStmt, SEHLeaveStmt>(S); in breakAndReturnEndPlus1Token()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCodeGenPGO.cpp115 BreakStmt, enumerator
340 return PGOHash::BreakStmt; in DEFINE_NESTABLE_TRAVERSAL()
471 void VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
H A DCGStmt.cpp453 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 DCoverageMappingGen.cpp1054 void VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
H A DCodeGenFunction.cpp1518 if (isa<BreakStmt>(S)) in containsBreak()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DElseAfterReturnCheck.cpp232 if (isa<BreakStmt>(Stmt)) in getControlFlowString()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td20 def BreakStmt : StmtNode<Stmt>;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmt.h253 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 DRecursiveASTVisitor.h2387 DEF_TRAVERSE_STMT(BreakStmt, {})
/llvm-project-15.0.7/clang/lib/Analysis/
H A DReachableCode.cpp615 if (isa<BreakStmt>(S)) { in reportDeadCode()
H A DCFG.cpp546 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 DExtractFunction.cpp629 bool VisitBreakStmt(BreakStmt *Break) { in captureZoneInfo()
/llvm-project-15.0.7/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp900 const internal::VariadicDynCastAllOfMatcher<Stmt, BreakStmt> breakStmt;
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DXRefs.cpp1063 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 DRewriteObjC.cpp308 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 DRewriteModernObjC.cpp366 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 DSemaStmt.cpp1837 void VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt()
2006 void VisitBreakStmt(const BreakStmt* E) { in VisitBreakStmt()
3346 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
H A DAnalysisBasedWarnings.cpp1302 if (!(B->empty() && Term && isa<BreakStmt>(Term))) { in DiagnoseSwitchLabelsFallthrough()
/llvm-project-15.0.7/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1501 bool WalkUpFromBreakStmt(BreakStmt *S) { in WalkUpFromBreakStmt()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp328 void ASTStmtReader::VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt()
2842 S = new (Context) BreakStmt(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp254 void ASTStmtWriter::VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt()
/llvm-project-15.0.7/clang/lib/AST/
H A DStmtProfile.cpp303 void StmtProfiler::VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
H A DStmtPrinter.cpp471 void StmtPrinter::VisitBreakStmt(BreakStmt *Node) { in VisitBreakStmt()
/llvm-project-15.0.7/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2187 extern const internal::VariadicDynCastAllOfMatcher<Stmt, BreakStmt> breakStmt;
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1317 } else if (isa<BreakStmt, ContinueStmt, GotoStmt>(Term)) { in generatePathDiagnosticsForNode()

12