Searched refs:BreakStmt (Results 1 - 22 of 22) sorted by relevance

/external/clang/lib/Analysis/
H A DReachableCode.cpp575 if (isa<BreakStmt>(S)) {
H A DCFG.cpp354 CFGBlock *VisitBreakStmt(BreakStmt *B);
1332 return VisitBreakStmt(cast<BreakStmt>(S));
1674 CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) {
H A DThreadSafety.cpp2483 if (isa<ContinueStmt>(Terminator) || isa<BreakStmt>(Terminator)) {
/external/clang/lib/CodeGen/
H A DCGStmt.cpp216 case Stmt::BreakStmtClass: EmitBreakStmt(cast<BreakStmt>(*S)); break;
1062 void CodeGenFunction::EmitBreakStmt(const BreakStmt &S) {
1195 isa<BreakStmt>(S.getSubStmt())) {
1313 if (!Case && isa<BreakStmt>(S))
H A DCodeGenPGO.cpp456 void VisitBreakStmt(const BreakStmt *S) {
H A DCodeGenFunction.cpp913 if (isa<BreakStmt>(S))
H A DCodeGenFunction.h1873 void EmitBreakStmt(const BreakStmt &S);
/external/chromium_org/v8/tools/gcmole/
H A Dgcmole.cc868 VISIT(BreakStmt);
985 DECL_VISIT_STMT(BreakStmt) {
/external/clang/include/clang/AST/
H A DStmt.h1304 /// BreakStmt - This represents a break.
1306 class BreakStmt : public Stmt { class in namespace:clang
1309 BreakStmt(SourceLocation BL) : Stmt(BreakStmtClass), BreakLoc(BL) {} function in class:clang::BreakStmt
1312 explicit BreakStmt(EmptyShell Empty) : Stmt(BreakStmtClass, Empty) { } function in class:clang::BreakStmt
H A DDataRecursiveASTVisitor.h1901 DEF_TRAVERSE_STMT(BreakStmt, {})
H A DRecursiveASTVisitor.h1918 DEF_TRAVERSE_STMT(BreakStmt, {})
/external/clang/lib/AST/
H A DStmtPrinter.cpp357 void StmtPrinter::VisitBreakStmt(BreakStmt *Node) {
H A DStmtProfile.cpp152 void StmtProfiler::VisitBreakStmt(const BreakStmt *S) {
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h995 const internal::VariadicDynCastAllOfMatcher<Stmt, BreakStmt> breakStmt;
/external/clang/lib/Sema/
H A DSemaStmt.cpp1353 void VisitBreakStmt(BreakStmt *S) {
1515 void VisitBreakStmt(BreakStmt* E) {
2420 return new (Context) BreakStmt(BreakLoc);
H A DAnalysisBasedWarnings.cpp1125 if (!(B->empty() && Term && isa<BreakStmt>(Term))) {
H A DTreeTransform.h5781 TreeTransform<Derived>::TransformBreakStmt(BreakStmt *S) {
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp375 Stmt *RewriteBreakStmt(BreakStmt *S);
1639 Stmt *RewriteModernObjC::RewriteBreakStmt(BreakStmt *S) {
5702 if (BreakStmt *StmtBreakStmt =
5703 dyn_cast<BreakStmt>(S))
H A DRewriteObjC.cpp316 Stmt *RewriteBreakStmt(BreakStmt *S);
1416 Stmt *RewriteObjC::RewriteBreakStmt(BreakStmt *S) {
4724 if (BreakStmt *StmtBreakStmt =
4725 dyn_cast<BreakStmt>(S))
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp268 void ASTStmtReader::VisitBreakStmt(BreakStmt *S) {
2107 S = new (Context) BreakStmt(Empty);
H A DASTWriterStmt.cpp198 void ASTStmtWriter::VisitBreakStmt(BreakStmt *S) {
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1856 } else if (isa<BreakStmt>(Term) || isa<ContinueStmt>(Term) ||

Completed in 421 milliseconds