/external/clang/lib/Sema/ |
D | JumpDiagnostics.cpp | 87 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()
|
D | SemaStmt.cpp | 1383 void VisitGotoStmt(GotoStmt *S) { in VisitGotoStmt() 2621 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
|
D | TreeTransform.h | 6443 TreeTransform<Derived>::TransformGotoStmt(GotoStmt *S) { in TransformGotoStmt()
|
/external/clang/unittests/ASTMatchers/Dynamic/ |
D | VariantValueTest.cpp | 69 EXPECT_FALSE(Value.getMatcher().hasTypedMatcher<GotoStmt>()); in TEST()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 21 def GotoStmt : Stmt;
|
/external/clang/include/clang/AST/ |
D | Stmt.h | 1224 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
|
D | RecursiveASTVisitor.h | 2031 DEF_TRAVERSE_STMT(GotoStmt, {})
|
/external/v8/tools/gcmole/ |
D | gcmole.cc | 908 VISIT(GotoStmt); in VisitStmt() 936 IGNORE_STMT(GotoStmt);
|
/external/clang/lib/Analysis/ |
D | CFG.cpp | 458 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/ |
D | CGStmt.cpp | 310 case Stmt::GotoStmtClass: EmitGotoStmt(cast<GotoStmt>(*S)); break; in EmitSimpleStmt() 538 void CodeGenFunction::EmitGotoStmt(const GotoStmt &S) { in EmitGotoStmt()
|
D | CodeGenPGO.cpp | 299 void VisitGotoStmt(const GotoStmt *S) { in VisitGotoStmt()
|
D | CoverageMappingGen.cpp | 640 void VisitGotoStmt(const GotoStmt *S) { terminateRegion(S); } in VisitGotoStmt()
|
D | CodeGenFunction.h | 2268 void EmitGotoStmt(const GotoStmt &S);
|
/external/clang/lib/AST/ |
D | ASTDumper.cpp | 501 void VisitGotoStmt(const GotoStmt *Node); 1797 void ASTDumper::VisitGotoStmt(const GotoStmt *Node) { in VisitGotoStmt()
|
D | StmtProfile.cpp | 141 void StmtProfiler::VisitGotoStmt(const GotoStmt *S) { in VisitGotoStmt()
|
D | StmtPrinter.cpp | 342 void StmtPrinter::VisitGotoStmt(GotoStmt *Node) { in VisitGotoStmt()
|
D | ASTImporter.cpp | 197 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/ |
D | ASTReader.h | 77 class GotoStmt; variable
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1915 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/ |
D | ASTMatchers.h | 1522 const internal::VariadicDynCastAllOfMatcher<Stmt, GotoStmt> gotoStmt;
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 253 void ASTStmtReader::VisitGotoStmt(GotoStmt *S) { in VisitGotoStmt() 2902 S = new (Context) GotoStmt(Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 188 void ASTStmtWriter::VisitGotoStmt(GotoStmt *S) { in VisitGotoStmt()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | BugReporter.cpp | 1844 isa<GotoStmt>(Term)) { in GenerateAlternateExtensivePathDiagnostic()
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 1720 if (isa<ReturnStmt>(S) || isa<GotoStmt>(S)) { in WarnAboutReturnGotoStmts()
|
D | RewriteModernObjC.cpp | 1913 if (isa<ReturnStmt>(S) || isa<GotoStmt>(S)) { in WarnAboutReturnGotoStmts()
|