/external/clang/lib/Sema/ |
D | JumpDiagnostics.cpp | 87 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()
|
D | SemaStmt.cpp | 1378 void VisitGotoStmt(GotoStmt *S) { in VisitGotoStmt() 2590 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
|
D | TreeTransform.h | 6339 TreeTransform<Derived>::TransformGotoStmt(GotoStmt *S) { in TransformGotoStmt()
|
/external/clang/unittests/ASTMatchers/Dynamic/ |
D | VariantValueTest.cpp | 72 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 | 1202 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
|
D | RecursiveASTVisitor.h | 1932 DEF_TRAVERSE_STMT(GotoStmt, {})
|
/external/v8/tools/gcmole/ |
D | gcmole.cc | 876 VISIT(GotoStmt); in VisitStmt() 904 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() 2359 CFGBlock *CFGBuilder::VisitGotoStmt(GotoStmt *G) { in VisitGotoStmt()
|
/external/clang/lib/CodeGen/ |
D | CodeGenPGO.cpp | 294 void VisitGotoStmt(const GotoStmt *S) { in VisitGotoStmt()
|
D | CGStmt.cpp | 280 case Stmt::GotoStmtClass: EmitGotoStmt(cast<GotoStmt>(*S)); break; in EmitSimpleStmt() 508 void CodeGenFunction::EmitGotoStmt(const GotoStmt &S) { in EmitGotoStmt()
|
D | CoverageMappingGen.cpp | 599 void VisitGotoStmt(const GotoStmt *S) { terminateRegion(S); } in VisitGotoStmt()
|
D | CodeGenFunction.h | 2139 void EmitGotoStmt(const GotoStmt &S);
|
/external/clang/lib/AST/ |
D | ASTDumper.cpp | 487 void VisitGotoStmt(const GotoStmt *Node); 1685 void ASTDumper::VisitGotoStmt(const GotoStmt *Node) { in VisitGotoStmt()
|
D | StmtProfile.cpp | 140 void StmtProfiler::VisitGotoStmt(const GotoStmt *S) { in VisitGotoStmt()
|
D | StmtPrinter.cpp | 341 void StmtPrinter::VisitGotoStmt(GotoStmt *Node) { in VisitGotoStmt()
|
D | ASTImporter.cpp | 189 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/ |
D | ASTReader.h | 76 class GotoStmt; variable
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 1347 const internal::VariadicDynCastAllOfMatcher<Stmt, GotoStmt> gotoStmt;
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1896 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/ |
D | ASTReaderStmt.cpp | 249 void ASTStmtReader::VisitGotoStmt(GotoStmt *S) { in VisitGotoStmt() 2600 S = new (Context) GotoStmt(Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 176 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 | 1719 if (isa<ReturnStmt>(S) || isa<GotoStmt>(S)) { in WarnAboutReturnGotoStmts()
|
D | RewriteModernObjC.cpp | 1939 if (isa<ReturnStmt>(S) || isa<GotoStmt>(S)) { in WarnAboutReturnGotoStmts()
|