/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenPGO.cpp | 120 BreakStmt, enumerator 557 return PGOHash::BreakStmt; in DEFINE_NESTABLE_TRAVERSAL() 688 void VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
|
H A D | CGStmt.cpp | 481 EmitBreakStmt(cast<BreakStmt>(*S)); in EmitSimpleStmt() 1588 void CodeGenFunction::EmitBreakStmt(const BreakStmt &S) { in EmitBreakStmt() 1743 isa<BreakStmt>(S.getSubStmt())) { in EmitCaseStmt() 1885 if (!Case && isa<BreakStmt>(S)) in CollectStatementsForCase()
|
H A D | CoverageMappingGen.cpp | 1545 void VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
|
H A D | CodeGenFunction.cpp | 1644 if (isa<BreakStmt>(S)) in containsBreak()
|
H A D | CodeGenFunction.h | 3562 void EmitBreakStmt(const BreakStmt &S);
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
H A D | PtrTypesSemantics.cpp | 349 bool VisitBreakStmt(const BreakStmt *) { return true; } in VisitBreakStmt() argument
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | StmtNodes.td | 20 def BreakStmt : StmtNode<Stmt>;
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | ReachableCode.cpp | 666 if (isa<BreakStmt>(S)) { in reportDeadCode()
|
H A D | CFG.cpp | 563 CFGBlock *VisitBreakStmt(BreakStmt *B); 2226 return VisitBreakStmt(cast<BreakStmt>(S)); in Visit() 2658 CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) { in VisitBreakStmt()
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Compiler.h | 207 bool visitBreakStmt(const BreakStmt *S);
|
H A D | Compiler.cpp | 4187 return visitBreakStmt(cast<BreakStmt>(S)); in visitStmt() 4510 bool Compiler<Emitter>::visitBreakStmt(const BreakStmt *S) { in visitBreakStmt()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Stmt.h | 289 friend class BreakStmt; 2985 class BreakStmt : public Stmt { 2987 BreakStmt(SourceLocation BL) : Stmt(BreakStmtClass) { 2992 explicit BreakStmt(EmptyShell Empty) : Stmt(BreakStmtClass, Empty) {}
|
H A D | RecursiveASTVisitor.h | 2425 DEF_TRAVERSE_STMT(BreakStmt, {})
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaStmt.cpp | 1870 void VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt() 2039 void VisitBreakStmt(const BreakStmt* E) { in VisitBreakStmt() 3234 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
|
H A D | AnalysisBasedWarnings.cpp | 1330 if (!(B->empty() && isa_and_nonnull<BreakStmt>(Term))) { in DiagnoseSwitchLabelsFallthrough()
|
H A D | TreeTransform.h | 8243 TreeTransform<Derived>::TransformBreakStmt(BreakStmt *S) { in TransformBreakStmt()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
H A D | RewriteModernObjC.cpp | 365 Stmt *RewriteBreakStmt(BreakStmt *S); 1608 Stmt *RewriteModernObjC::RewriteBreakStmt(BreakStmt *S) { in RewriteBreakStmt() 5560 if (BreakStmt *StmtBreakStmt = in RewriteFunctionBodyOrGlobalInitializer() 5561 dyn_cast<BreakStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
H A D | BuildTree.cpp | 1502 bool WalkUpFromBreakStmt(BreakStmt *S) { in WalkUpFromBreakStmt()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 332 void ASTStmtReader::VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt() 3005 S = new (Context) BreakStmt(Empty); in ReadStmtFromStream()
|
H A D | ASTWriterStmt.cpp | 319 void ASTStmtWriter::VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | StmtProfile.cpp | 319 void StmtProfiler::VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
|
H A D | StmtPrinter.cpp | 478 void StmtPrinter::VisitBreakStmt(BreakStmt *Node) { in VisitBreakStmt()
|
H A D | ASTImporter.cpp | 548 ExpectedStmt VisitBreakStmt(BreakStmt *S); 7065 ExpectedStmt ASTNodeImporter::VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt() 7069 return new (Importer.getToContext()) BreakStmt(*ToBreakLocOrErr); in VisitBreakStmt()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | BugReporter.cpp | 1327 } else if (isa<BreakStmt, ContinueStmt, GotoStmt>(Term)) { in generatePathDiagnosticsForNode()
|
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchers.h | 2251 extern const internal::VariadicDynCastAllOfMatcher<Stmt, BreakStmt> breakStmt;
|