Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenPGO.cpp114 BreakStmt, enumerator
322 return PGOHash::BreakStmt; in DEFINE_NESTABLE_TRAVERSAL()
453 void VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
H A DCGStmt.cpp357 case Stmt::BreakStmtClass: EmitBreakStmt(cast<BreakStmt>(*S)); break; in EmitSimpleStmt()
1115 void CodeGenFunction::EmitBreakStmt(const BreakStmt &S) { in EmitBreakStmt()
1245 isa<BreakStmt>(S.getSubStmt())) { in EmitCaseStmt()
1369 if (!Case && isa<BreakStmt>(S)) in CollectStatementsForCase()
H A DCoverageMappingGen.cpp925 void VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
H A DCodeGenFunction.cpp1458 if (isa<BreakStmt>(S)) in containsBreak()
H A DCodeGenFunction.h2869 void EmitBreakStmt(const BreakStmt &S);
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td24 def BreakStmt : Stmt;
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h246 friend class BreakStmt; in alignas() local
2410 class BreakStmt : public Stmt {
2412 BreakStmt(SourceLocation BL) : Stmt(BreakStmtClass) { in BreakStmt() function
2417 explicit BreakStmt(EmptyShell Empty) : Stmt(BreakStmtClass, Empty) {} in BreakStmt() function
H A DRecursiveASTVisitor.h2159 DEF_TRAVERSE_STMT(BreakStmt, {})
/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DReachableCode.cpp617 if (isa<BreakStmt>(S)) { in reportDeadCode()
H A DCFG.cpp524 CFGBlock *VisitBreakStmt(BreakStmt *B);
2019 return VisitBreakStmt(cast<BreakStmt>(S)); in Visit()
2386 CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) { in VisitBreakStmt()
H A DThreadSafety.cpp2406 if (isa<ContinueStmt>(Terminator) || isa<BreakStmt>(Terminator)) { in runAnalysis()
/freebsd-12.1/contrib/llvm/tools/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp700 const internal::VariadicDynCastAllOfMatcher<Stmt, BreakStmt> breakStmt;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp309 Stmt *RewriteBreakStmt(BreakStmt *S);
1409 Stmt *RewriteObjC::RewriteBreakStmt(BreakStmt *S) { in RewriteBreakStmt()
4665 if (BreakStmt *StmtBreakStmt = in RewriteFunctionBodyOrGlobalInitializer()
4666 dyn_cast<BreakStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
H A DRewriteModernObjC.cpp366 Stmt *RewriteBreakStmt(BreakStmt *S);
1604 Stmt *RewriteModernObjC::RewriteBreakStmt(BreakStmt *S) { in RewriteBreakStmt()
5566 if (BreakStmt *StmtBreakStmt = in RewriteFunctionBodyOrGlobalInitializer()
5567 dyn_cast<BreakStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmt.cpp1449 void VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt()
1618 void VisitBreakStmt(const BreakStmt* E) { in VisitBreakStmt()
2916 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
H A DAnalysisBasedWarnings.cpp1286 if (!(B->empty() && Term && isa<BreakStmt>(Term))) { in DiagnoseSwitchLabelsFallthrough()
H A DTreeTransform.h6879 TreeTransform<Derived>::TransformBreakStmt(BreakStmt *S) { in TransformBreakStmt()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp324 void ASTStmtReader::VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt()
2426 S = new (Context) BreakStmt(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp244 void ASTStmtWriter::VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtProfile.cpp299 void StmtProfiler::VisitBreakStmt(const BreakStmt *S) { in VisitBreakStmt()
H A DStmtPrinter.cpp396 void StmtPrinter::VisitBreakStmt(BreakStmt *Node) { in VisitBreakStmt()
H A DASTImporter.cpp528 ExpectedStmt VisitBreakStmt(BreakStmt *S);
5859 ExpectedStmt ASTNodeImporter::VisitBreakStmt(BreakStmt *S) { in VisitBreakStmt()
5863 return new (Importer.getToContext()) BreakStmt(*ToBreakLocOrErr); in VisitBreakStmt()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1932 extern const internal::VariadicDynCastAllOfMatcher<Stmt, BreakStmt> breakStmt;
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1239 } else if (isa<BreakStmt>(Term) || isa<ContinueStmt>(Term) || in generatePathDiagnosticsForNode()