Home
last modified time | relevance | path

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

/external/clang/unittests/ASTMatchers/Dynamic/
DVariantValueTest.cpp71 EXPECT_FALSE(Value.hasTypedMatcher<GotoStmt>()); in TEST()
/external/clang/include/clang/Basic/
DStmtNodes.td21 def GotoStmt : Stmt;
/external/clang/lib/Sema/
DJumpDiagnostics.cpp497 if (GotoStmt *GS = dyn_cast<GotoStmt>(Jump)) { in VerifyJumps()
DSemaStmt.cpp1318 void VisitGotoStmt(GotoStmt *S) { in VisitGotoStmt()
2264 return Owned(new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc)); in ActOnGotoStmt()
DTreeTransform.h5602 TreeTransform<Derived>::TransformGotoStmt(GotoStmt *S) { in TransformGotoStmt()
/external/chromium_org/v8/tools/gcmole/
Dgcmole.cc893 VISIT(GotoStmt); in VisitStmt()
921 IGNORE_STMT(GotoStmt);
/external/v8/tools/gcmole/
Dgcmole.cc895 VISIT(GotoStmt); in VisitStmt()
923 IGNORE_STMT(GotoStmt);
/external/clang/include/clang/AST/
DStmt.h1181 class GotoStmt : public Stmt {
1186 GotoStmt(LabelDecl *label, SourceLocation GL, SourceLocation LL) in GotoStmt() function
1190 explicit GotoStmt(EmptyShell Empty) : Stmt(GotoStmtClass, Empty) { } in GotoStmt() function
DRecursiveASTVisitor.h2017 DEF_TRAVERSE_STMT(GotoStmt, { })
/external/clang/lib/Analysis/
DCFG.cpp378 CFGBlock *VisitGotoStmt(GotoStmt *G);
678 const GotoStmt *G = cast<GotoStmt>(B->getTerminator()); in buildCFG()
1147 return VisitGotoStmt(cast<GotoStmt>(S)); in Visit()
1929 CFGBlock *CFGBuilder::VisitGotoStmt(GotoStmt *G) { in VisitGotoStmt()
/external/clang/lib/CodeGen/
DCGStmt.cpp184 case Stmt::GotoStmtClass: EmitGotoStmt(cast<GotoStmt>(*S)); break; in EmitSimpleStmt()
394 void CodeGenFunction::EmitGotoStmt(const GotoStmt &S) { in EmitGotoStmt()
DCodeGenFunction.h1818 void EmitGotoStmt(const GotoStmt &S);
/external/clang/lib/AST/
DASTDumper.cpp251 void VisitGotoStmt(const GotoStmt *Node);
1453 void ASTDumper::VisitGotoStmt(const GotoStmt *Node) { in VisitGotoStmt()
DStmtProfile.cpp140 void StmtProfiler::VisitGotoStmt(const GotoStmt *S) { in VisitGotoStmt()
DStmtPrinter.cpp352 void StmtPrinter::VisitGotoStmt(GotoStmt *Node) { in VisitGotoStmt()
/external/clang/include/clang/Serialization/
DASTReader.h73 class GotoStmt; variable
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h932 const internal::VariadicDynCastAllOfMatcher<Stmt, GotoStmt> gotoStmt;
/external/clang/tools/libclang/
DCIndex.cpp1834 void VisitGotoStmt(const GotoStmt *GS);
2103 void EnqueueVisitor::VisitGotoStmt(const GotoStmt *GS) { in VisitGotoStmt()
4418 if (const GotoStmt *Goto = dyn_cast_or_null<GotoStmt>(S)) in clang_getCursorReferenced()
DRecursiveASTVisitor.h1932 DEF_TRAVERSE_STMT(GotoStmt, { })
/external/clang/lib/Serialization/
DASTReaderStmt.cpp249 void ASTStmtReader::VisitGotoStmt(GotoStmt *S) { in VisitGotoStmt()
1871 S = new (Context) GotoStmt(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp176 void ASTStmtWriter::VisitGotoStmt(GotoStmt *S) { in VisitGotoStmt()
/external/clang/lib/StaticAnalyzer/Core/
DBugReporter.cpp1811 isa<GotoStmt>(Term)) { in GenerateAlternateExtensivePathDiagnostic()
/external/clang/lib/Rewrite/Frontend/
DRewriteObjC.cpp1749 if (isa<ReturnStmt>(S) || isa<GotoStmt>(S)) { in WarnAboutReturnGotoStmts()
DRewriteModernObjC.cpp1955 if (isa<ReturnStmt>(S) || isa<GotoStmt>(S)) { in WarnAboutReturnGotoStmts()