/external/clang/lib/Sema/ |
D | JumpDiagnostics.cpp | 558 else if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SubStmt)) in BuildScopeInformation() 611 else if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) in VerifyJumps()
|
D | SemaStmt.cpp | 455 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt); in ActOnDefaultStmt() 808 DefaultStmt *TheDefaultStmt = nullptr; in ActOnFinishSwitchStmt() 815 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) { in ActOnFinishSwitchStmt()
|
D | AnalysisBasedWarnings.cpp | 821 Range = cast<DefaultStmt>(Term)->getDefaultLoc(); in DiagUninitUse()
|
/external/llvm-project/clang-tools-extra/clang-tidy/hicpp/ |
D | MultiwayPathsCoveredCheck.cpp | 58 if (isa<DefaultStmt>(CurrentCase)) in countCaseLabels()
|
/external/llvm-project/clang-tools-extra/clangd/refactor/tweaks/ |
D | PopulateSwitch.cpp | 154 if (isa<DefaultStmt>(CaseList)) in REGISTER_TWEAK()
|
/external/llvm-project/clang/lib/Analysis/ |
D | ProgramPoint.cpp | 170 assert(isa<DefaultStmt>(Label)); in printJson()
|
D | CFG.cpp | 569 CFGBlock *VisitDefaultStmt(DefaultStmt *D); 2232 return VisitDefaultStmt(cast<DefaultStmt>(S)); in Visit() 4254 CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) { in VisitDefaultStmt() 5651 } else if (isa<DefaultStmt>(Label)) in print_block()
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 313 case Stmt::DefaultStmtClass: EmitDefaultStmt(cast<DefaultStmt>(*S)); break; in EmitSimpleStmt() 1263 void CodeGenFunction::EmitDefaultStmt(const DefaultStmt &S) { in EmitDefaultStmt() 1431 const DefaultStmt *DefaultCase = nullptr; in FindCaseStatementsForValue() 1436 if (const DefaultStmt *DS = dyn_cast<DefaultStmt>(Case)) { in FindCaseStatementsForValue() 1545 if (isa<DefaultStmt>(Case)) in EmitSwitchStmt()
|
D | CodeGenPGO.cpp | 88 DefaultStmt, enumerator 178 return PGOHash::DefaultStmt; in getHashType()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGStmt.cpp | 404 EmitDefaultStmt(cast<DefaultStmt>(*S), Attrs); in EmitSimpleStmt() 1459 void CodeGenFunction::EmitDefaultStmt(const DefaultStmt &S, in EmitDefaultStmt() 1668 const DefaultStmt *DefaultCase = nullptr; in FindCaseStatementsForValue() 1673 if (const DefaultStmt *DS = dyn_cast<DefaultStmt>(Case)) { in FindCaseStatementsForValue() 1839 if (isa<DefaultStmt>(Case)) in EmitSwitchStmt()
|
D | CodeGenPGO.cpp | 100 DefaultStmt, enumerator 277 return PGOHash::DefaultStmt; in DEFINE_NESTABLE_TRAVERSAL()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 29 def DefaultStmt : DStmt<SwitchCase>;
|
/external/llvm-project/clang/lib/Sema/ |
D | JumpDiagnostics.cpp | 664 else if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) in VerifyJumps()
|
D | SemaStmt.cpp | 529 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt); in ActOnDefaultStmt() 951 DefaultStmt *TheDefaultStmt = nullptr; in ActOnFinishSwitchStmt() 958 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) { in ActOnFinishSwitchStmt()
|
/external/clang/include/clang/AST/ |
D | Stmt.h | 750 class DefaultStmt : public SwitchCase { 753 DefaultStmt(SourceLocation DL, SourceLocation CL, Stmt *substmt) : in DefaultStmt() function 757 explicit DefaultStmt(EmptyShell Empty) in DefaultStmt() function 783 return cast<DefaultStmt>(this)->getLocEnd(); in getLocEnd()
|
/external/llvm-project/clang/include/clang/AST/ |
D | Stmt.h | 1722 class DefaultStmt : public SwitchCase { 1726 DefaultStmt(SourceLocation DL, SourceLocation CL, Stmt *substmt) in DefaultStmt() function 1730 explicit DefaultStmt(EmptyShell Empty) in DefaultStmt() function 1760 else if (const auto *DS = dyn_cast<DefaultStmt>(this)) in getEndLoc() 1768 else if (auto *DS = dyn_cast<DefaultStmt>(this)) in getSubStmt()
|
/external/llvm-project/clang/include/clang/Basic/ |
D | StmtNodes.td | 25 def DefaultStmt : StmtNode<SwitchCase>;
|
/external/clang/lib/Analysis/ |
D | CFG.cpp | 454 CFGBlock *VisitDefaultStmt(DefaultStmt *D); 1530 return VisitDefaultStmt(cast<DefaultStmt>(S)); in Visit() 3280 CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) { in VisitDefaultStmt() 4379 } else if (isa<DefaultStmt>(Label)) in print_block()
|
/external/llvm-project/clang/lib/ASTMatchers/ |
D | ASTMatchersInternal.cpp | 883 const internal::VariadicDynCastAllOfMatcher<Stmt, DefaultStmt> defaultStmt;
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 859 return cast<DefaultStmt>(this)->getSubStmt(); in getSubStmt()
|
D | StmtProfile.cpp | 104 void StmtProfiler::VisitDefaultStmt(const DefaultStmt *S) { in VisitDefaultStmt()
|
/external/llvm-project/clang/lib/Tooling/Syntax/ |
D | BuildTree.cpp | 1418 bool WalkUpFromDefaultStmt(DefaultStmt *S) { in WalkUpFromDefaultStmt()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 1585 const internal::VariadicDynCastAllOfMatcher<Stmt, DefaultStmt> defaultStmt;
|
/external/llvm-project/clang/lib/AST/ |
D | StmtProfile.cpp | 249 void StmtProfiler::VisitDefaultStmt(const DefaultStmt *S) { in VisitDefaultStmt()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 181 void ASTStmtReader::VisitDefaultStmt(DefaultStmt *S) { in VisitDefaultStmt() 2688 S = new (Context) DefaultStmt(Empty); in ReadStmtFromStream()
|