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

/external/clang/lib/CodeGen/
H A DCGStmt.cpp185 case Stmt::BreakStmtClass: EmitBreakStmt(cast<BreakStmt>(*S)); break;
874 void CodeGenFunction::EmitBreakStmt(const BreakStmt &S) {
981 isa<BreakStmt>(S.getSubStmt())) {
1083 if (Case == 0 && isa<BreakStmt>(S))
H A DCodeGenFunction.cpp787 if (isa<BreakStmt>(S))
H A DCodeGenFunction.h1826 void EmitBreakStmt(const BreakStmt &S);
/external/chromium_org/v8/tools/gcmole/
H A Dgcmole.cc885 VISIT(BreakStmt);
1002 DECL_VISIT_STMT(BreakStmt) {
/external/v8/tools/gcmole/
H A Dgcmole.cc887 VISIT(BreakStmt);
1004 DECL_VISIT_STMT(BreakStmt) {
/external/clang/include/clang/AST/
H A DStmt.h1279 /// BreakStmt - This represents a break.
1281 class BreakStmt : public Stmt { class in namespace:clang
1284 BreakStmt(SourceLocation BL) : Stmt(BreakStmtClass), BreakLoc(BL) {} function in class:clang::BreakStmt
1287 explicit BreakStmt(EmptyShell Empty) : Stmt(BreakStmtClass, Empty) { } function in class:clang::BreakStmt
H A DRecursiveASTVisitor.h2009 DEF_TRAVERSE_STMT(BreakStmt, { })
/external/clang/lib/AST/
H A DStmtPrinter.cpp366 void StmtPrinter::VisitBreakStmt(BreakStmt *Node) {
H A DStmtProfile.cpp153 void StmtProfiler::VisitBreakStmt(const BreakStmt *S) {
/external/clang/lib/Analysis/
H A DCFG.cpp353 CFGBlock *VisitBreakStmt(BreakStmt *B);
1071 return VisitBreakStmt(cast<BreakStmt>(S));
1404 CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) {
H A DThreadSafety.cpp2444 if (isa<ContinueStmt>(Terminator) || isa<BreakStmt>(Terminator)) {
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h901 const internal::VariadicDynCastAllOfMatcher<Stmt, BreakStmt> breakStmt;
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp315 Stmt *RewriteBreakStmt(BreakStmt *S);
1438 Stmt *RewriteObjC::RewriteBreakStmt(BreakStmt *S) {
4775 if (BreakStmt *StmtBreakStmt =
4776 dyn_cast<BreakStmt>(S))
H A DRewriteModernObjC.cpp360 Stmt *RewriteBreakStmt(BreakStmt *S);
1643 Stmt *RewriteModernObjC::RewriteBreakStmt(BreakStmt *S) {
5775 if (BreakStmt *StmtBreakStmt =
5776 dyn_cast<BreakStmt>(S))
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp917 if (!(B->empty() && Term && isa<BreakStmt>(Term))) {
H A DSemaStmt.cpp1314 void VisitBreakStmt(BreakStmt *S) {
2313 return Owned(new (Context) BreakStmt(BreakLoc));
H A DTreeTransform.h5637 TreeTransform<Derived>::TransformBreakStmt(BreakStmt *S) {
/external/clang/tools/libclang/
H A DRecursiveASTVisitor.h1924 DEF_TRAVERSE_STMT(BreakStmt, { })
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp268 void ASTStmtReader::VisitBreakStmt(BreakStmt *S) {
1883 S = new (Context) BreakStmt(Empty);
H A DASTWriterStmt.cpp198 void ASTStmtWriter::VisitBreakStmt(BreakStmt *S) {
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1810 } else if (isa<BreakStmt>(Term) || isa<ContinueStmt>(Term) ||

Completed in 212 milliseconds