| /openbsd-src/gnu/llvm/clang/lib/AST/Interp/ |
| H A D | ByteCodeStmtGen.h | 63 bool visitBreakStmt(const BreakStmt *S);
|
| H A D | ByteCodeStmtGen.cpp | 182 return visitBreakStmt(cast<BreakStmt>(S)); in visitStmt() 379 bool ByteCodeStmtGen<Emitter>::visitBreakStmt(const BreakStmt *S) { in visitBreakStmt()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CodeGenPGO.cpp | 116 BreakStmt, enumerator 341 return PGOHash::BreakStmt; in DEFINE_NESTABLE_TRAVERSAL() 472 void VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
|
| H A D | CGStmt.cpp | 457 EmitBreakStmt(cast<BreakStmt>(*S)); in EmitSimpleStmt() 1391 void CodeGenFunction::EmitBreakStmt(const BreakStmt &S) { in EmitBreakStmt() 1546 isa<BreakStmt>(S.getSubStmt())) { in EmitCaseStmt() 1688 if (!Case && isa<BreakStmt>(S)) in CollectStatementsForCase()
|
| H A D | CoverageMappingGen.cpp | 1057 void VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
|
| H A D | CodeGenFunction.cpp | 1541 if (isa<BreakStmt>(S)) in containsBreak()
|
| H A D | CodeGenFunction.h | 3251 void EmitBreakStmt(const BreakStmt &S);
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 20 def BreakStmt : StmtNode<Stmt>;
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | Stmt.h | 255 friend class BreakStmt; variable 2767 class BreakStmt : public Stmt { 2769 BreakStmt(SourceLocation BL) : Stmt(BreakStmtClass) { in BreakStmt() function 2774 explicit BreakStmt(EmptyShell Empty) : Stmt(BreakStmtClass, Empty) {} in BreakStmt() function
|
| H A D | RecursiveASTVisitor.h | 2384 DEF_TRAVERSE_STMT(BreakStmt, {})
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | ReachableCode.cpp | 622 if (isa<BreakStmt>(S)) { in reportDeadCode()
|
| H A D | CFG.cpp | 550 CFGBlock *VisitBreakStmt(BreakStmt *B); 2221 return VisitBreakStmt(cast<BreakStmt>(S)); in Visit() 2654 CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) { in VisitBreakStmt()
|
| /openbsd-src/gnu/llvm/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 901 const internal::VariadicDynCastAllOfMatcher<Stmt, BreakStmt> breakStmt;
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 1837 void VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt() 2006 void VisitBreakStmt(const BreakStmt* E) { in VisitBreakStmt() 3355 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
|
| H A D | AnalysisBasedWarnings.cpp | 1306 if (!(B->empty() && Term && isa<BreakStmt>(Term))) { in DiagnoseSwitchLabelsFallthrough()
|
| /openbsd-src/gnu/llvm/clang/lib/Tooling/Syntax/ |
| H A D | BuildTree.cpp | 1501 bool WalkUpFromBreakStmt(BreakStmt *S) { in WalkUpFromBreakStmt()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | StmtProfile.cpp | 303 void StmtProfiler::VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
|
| H A D | StmtPrinter.cpp | 472 void StmtPrinter::VisitBreakStmt(BreakStmt *Node) { in VisitBreakStmt()
|
| H A D | ASTImporter.cpp | 592 ExpectedStmt VisitBreakStmt(BreakStmt *S); 6714 ExpectedStmt ASTNodeImporter::VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt() 6718 return new (Importer.getToContext()) BreakStmt(*ToBreakLocOrErr); in VisitBreakStmt()
|
| /openbsd-src/gnu/llvm/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 329 void ASTStmtReader::VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt() 2889 S = new (Context) BreakStmt(Empty); in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 254 void ASTStmtWriter::VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt()
|
| /openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 2188 extern const internal::VariadicDynCastAllOfMatcher<Stmt, BreakStmt> breakStmt;
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
| H A D | BugReporter.cpp | 1316 } else if (isa<BreakStmt, ContinueStmt, GotoStmt>(Term)) { in generatePathDiagnosticsForNode()
|