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);
527 if (GotoStmt *GS = dyn_cast<GotoStmt>(Jump)) { in VerifyJumps()
795 if (isa<GotoStmt>(From) || isa<IndirectGotoStmt>(From)) { in CheckJump()
844 void JumpScopeChecker::CheckGotoStmt(GotoStmt *GS) { in CheckGotoStmt()
DSemaStmt.cpp1378 void VisitGotoStmt(GotoStmt *S) { in VisitGotoStmt()
2590 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
DTreeTransform.h6339 TreeTransform<Derived>::TransformGotoStmt(GotoStmt *S) { in TransformGotoStmt()
/external/clang/unittests/ASTMatchers/Dynamic/
DVariantValueTest.cpp72 EXPECT_FALSE(Value.getMatcher().hasTypedMatcher<GotoStmt>()); in TEST()
/external/clang/include/clang/Basic/
DStmtNodes.td21 def GotoStmt : Stmt;
/external/clang/include/clang/AST/
DStmt.h1202 class GotoStmt : public Stmt {
1207 GotoStmt(LabelDecl *label, SourceLocation GL, SourceLocation LL) in GotoStmt() function
1211 explicit GotoStmt(EmptyShell Empty) : Stmt(GotoStmtClass, Empty) { } in GotoStmt() function
DRecursiveASTVisitor.h1932 DEF_TRAVERSE_STMT(GotoStmt, {})
/external/v8/tools/gcmole/
Dgcmole.cc876 VISIT(GotoStmt); in VisitStmt()
904 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()
2359 CFGBlock *CFGBuilder::VisitGotoStmt(GotoStmt *G) { in VisitGotoStmt()
/external/clang/lib/CodeGen/
DCodeGenPGO.cpp294 void VisitGotoStmt(const GotoStmt *S) { in VisitGotoStmt()
DCGStmt.cpp280 case Stmt::GotoStmtClass: EmitGotoStmt(cast<GotoStmt>(*S)); break; in EmitSimpleStmt()
508 void CodeGenFunction::EmitGotoStmt(const GotoStmt &S) { in EmitGotoStmt()
DCoverageMappingGen.cpp599 void VisitGotoStmt(const GotoStmt *S) { terminateRegion(S); } in VisitGotoStmt()
DCodeGenFunction.h2139 void EmitGotoStmt(const GotoStmt &S);
/external/clang/lib/AST/
DASTDumper.cpp487 void VisitGotoStmt(const GotoStmt *Node);
1685 void ASTDumper::VisitGotoStmt(const GotoStmt *Node) { in VisitGotoStmt()
DStmtProfile.cpp140 void StmtProfiler::VisitGotoStmt(const GotoStmt *S) { in VisitGotoStmt()
DStmtPrinter.cpp341 void StmtPrinter::VisitGotoStmt(GotoStmt *Node) { in VisitGotoStmt()
DASTImporter.cpp189 Stmt *VisitGotoStmt(GotoStmt *S);
4815 Stmt *ASTNodeImporter::VisitGotoStmt(GotoStmt *S) { in VisitGotoStmt()
4824 return new (Importer.getToContext()) GotoStmt(ToLabel, in VisitGotoStmt()
/external/clang/include/clang/Serialization/
DASTReader.h76 class GotoStmt; variable
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1347 const internal::VariadicDynCastAllOfMatcher<Stmt, GotoStmt> gotoStmt;
/external/clang/tools/libclang/
DCIndex.cpp1896 void VisitGotoStmt(const GotoStmt *GS);
2380 void EnqueueVisitor::VisitGotoStmt(const GotoStmt *GS) { in VisitGotoStmt()
5135 if (const GotoStmt *Goto = dyn_cast_or_null<GotoStmt>(S)) in clang_getCursorReferenced()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp249 void ASTStmtReader::VisitGotoStmt(GotoStmt *S) { in VisitGotoStmt()
2600 S = new (Context) GotoStmt(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp176 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.cpp1719 if (isa<ReturnStmt>(S) || isa<GotoStmt>(S)) { in WarnAboutReturnGotoStmts()
DRewriteModernObjC.cpp1939 if (isa<ReturnStmt>(S) || isa<GotoStmt>(S)) { in WarnAboutReturnGotoStmts()