Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DJumpDiagnostics.cpp87 void CheckGotoStmt(GotoStmt *GS);
581 if (GotoStmt *GS = dyn_cast<GotoStmt>(Jump)) { in VerifyJumps()
849 if (isa<GotoStmt>(From) || isa<IndirectGotoStmt>(From)) { in CheckJump()
898 void JumpScopeChecker::CheckGotoStmt(GotoStmt *GS) { in CheckGotoStmt()
DSemaStmt.cpp1383 void VisitGotoStmt(GotoStmt *S) { in VisitGotoStmt()
2621 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
DTreeTransform.h6443 TreeTransform<Derived>::TransformGotoStmt(GotoStmt *S) { in TransformGotoStmt()
/external/clang/unittests/ASTMatchers/Dynamic/
DVariantValueTest.cpp69 EXPECT_FALSE(Value.getMatcher().hasTypedMatcher<GotoStmt>()); in TEST()
/external/clang/include/clang/Basic/
DStmtNodes.td21 def GotoStmt : Stmt;
/external/clang/include/clang/AST/
DStmt.h1224 class GotoStmt : public Stmt {
1229 GotoStmt(LabelDecl *label, SourceLocation GL, SourceLocation LL) in GotoStmt() function
1233 explicit GotoStmt(EmptyShell Empty) : Stmt(GotoStmtClass, Empty) { } in GotoStmt() function
DRecursiveASTVisitor.h2031 DEF_TRAVERSE_STMT(GotoStmt, {})
/external/v8/tools/gcmole/
Dgcmole.cc908 VISIT(GotoStmt); in VisitStmt()
936 IGNORE_STMT(GotoStmt);
/external/clang/lib/Analysis/
DCFG.cpp458 CFGBlock *VisitGotoStmt(GotoStmt *G);
1062 const GotoStmt *G = cast<GotoStmt>(B->getTerminator()); in buildCFG()
1539 return VisitGotoStmt(cast<GotoStmt>(S)); in Visit()
2373 CFGBlock *CFGBuilder::VisitGotoStmt(GotoStmt *G) { in VisitGotoStmt()
/external/clang/lib/CodeGen/
DCGStmt.cpp310 case Stmt::GotoStmtClass: EmitGotoStmt(cast<GotoStmt>(*S)); break; in EmitSimpleStmt()
538 void CodeGenFunction::EmitGotoStmt(const GotoStmt &S) { in EmitGotoStmt()
DCodeGenPGO.cpp299 void VisitGotoStmt(const GotoStmt *S) { in VisitGotoStmt()
DCoverageMappingGen.cpp640 void VisitGotoStmt(const GotoStmt *S) { terminateRegion(S); } in VisitGotoStmt()
DCodeGenFunction.h2268 void EmitGotoStmt(const GotoStmt &S);
/external/clang/lib/AST/
DASTDumper.cpp501 void VisitGotoStmt(const GotoStmt *Node);
1797 void ASTDumper::VisitGotoStmt(const GotoStmt *Node) { in VisitGotoStmt()
DStmtProfile.cpp141 void StmtProfiler::VisitGotoStmt(const GotoStmt *S) { in VisitGotoStmt()
DStmtPrinter.cpp342 void StmtPrinter::VisitGotoStmt(GotoStmt *Node) { in VisitGotoStmt()
DASTImporter.cpp197 Stmt *VisitGotoStmt(GotoStmt *S);
5113 Stmt *ASTNodeImporter::VisitGotoStmt(GotoStmt *S) { in VisitGotoStmt()
5122 return new (Importer.getToContext()) GotoStmt(ToLabel, in VisitGotoStmt()
/external/clang/include/clang/Serialization/
DASTReader.h77 class GotoStmt; variable
/external/clang/tools/libclang/
DCIndex.cpp1915 void VisitGotoStmt(const GotoStmt *GS);
2453 void EnqueueVisitor::VisitGotoStmt(const GotoStmt *GS) { in VisitGotoStmt()
5500 if (const GotoStmt *Goto = dyn_cast_or_null<GotoStmt>(S)) in clang_getCursorReferenced()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1522 const internal::VariadicDynCastAllOfMatcher<Stmt, GotoStmt> gotoStmt;
/external/clang/lib/Serialization/
DASTReaderStmt.cpp253 void ASTStmtReader::VisitGotoStmt(GotoStmt *S) { in VisitGotoStmt()
2902 S = new (Context) GotoStmt(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp188 void ASTStmtWriter::VisitGotoStmt(GotoStmt *S) { in VisitGotoStmt()
/external/clang/lib/StaticAnalyzer/Core/
DBugReporter.cpp1844 isa<GotoStmt>(Term)) { in GenerateAlternateExtensivePathDiagnostic()
/external/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp1720 if (isa<ReturnStmt>(S) || isa<GotoStmt>(S)) { in WarnAboutReturnGotoStmts()
DRewriteModernObjC.cpp1913 if (isa<ReturnStmt>(S) || isa<GotoStmt>(S)) { in WarnAboutReturnGotoStmts()