Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp120 BreakStmt, enumerator
557 return PGOHash::BreakStmt; in DEFINE_NESTABLE_TRAVERSAL()
688 void VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
H A DCGStmt.cpp481 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 DCoverageMappingGen.cpp1545 void VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
H A DCodeGenFunction.cpp1644 if (isa<BreakStmt>(S)) in containsBreak()
H A DCodeGenFunction.h3562 void EmitBreakStmt(const BreakStmt &S);
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DPtrTypesSemantics.cpp349 bool VisitBreakStmt(const BreakStmt *) { return true; } in VisitBreakStmt() argument
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td20 def BreakStmt : StmtNode<Stmt>;
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DReachableCode.cpp666 if (isa<BreakStmt>(S)) { in reportDeadCode()
H A DCFG.cpp563 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 DCompiler.h207 bool visitBreakStmt(const BreakStmt *S);
H A DCompiler.cpp4187 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 DStmt.h289 friend class BreakStmt;
2985 class BreakStmt : public Stmt {
2987 BreakStmt(SourceLocation BL) : Stmt(BreakStmtClass) {
2992 explicit BreakStmt(EmptyShell Empty) : Stmt(BreakStmtClass, Empty) {}
H A DRecursiveASTVisitor.h2425 DEF_TRAVERSE_STMT(BreakStmt, {})
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp1870 void VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt()
2039 void VisitBreakStmt(const BreakStmt* E) { in VisitBreakStmt()
3234 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
H A DAnalysisBasedWarnings.cpp1330 if (!(B->empty() && isa_and_nonnull<BreakStmt>(Term))) { in DiagnoseSwitchLabelsFallthrough()
H A DTreeTransform.h8243 TreeTransform<Derived>::TransformBreakStmt(BreakStmt *S) { in TransformBreakStmt()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp365 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 DBuildTree.cpp1502 bool WalkUpFromBreakStmt(BreakStmt *S) { in WalkUpFromBreakStmt()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp332 void ASTStmtReader::VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt()
3005 S = new (Context) BreakStmt(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp319 void ASTStmtWriter::VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp319 void StmtProfiler::VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
H A DStmtPrinter.cpp478 void StmtPrinter::VisitBreakStmt(BreakStmt *Node) { in VisitBreakStmt()
H A DASTImporter.cpp548 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 DBugReporter.cpp1327 } else if (isa<BreakStmt, ContinueStmt, GotoStmt>(Term)) { in generatePathDiagnosticsForNode()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2251 extern const internal::VariadicDynCastAllOfMatcher<Stmt, BreakStmt> breakStmt;