Home
last modified time | relevance | path

Searched refs:DefaultStmt (Results 1 – 20 of 20) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DProgramPoint.cpp174 assert(isa<DefaultStmt>(Label)); in print()
H A DCFG.cpp547 CFGBlock *VisitDefaultStmt(DefaultStmt *D);
2092 return VisitDefaultStmt(cast<DefaultStmt>(S)); in Visit()
4023 CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) { in VisitDefaultStmt()
5277 } else if (isa<DefaultStmt>(Label)) in print_block()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp359 case Stmt::DefaultStmtClass: EmitDefaultStmt(cast<DefaultStmt>(*S)); break; in EmitSimpleStmt()
1303 void CodeGenFunction::EmitDefaultStmt(const DefaultStmt &S) { in EmitDefaultStmt()
1508 const DefaultStmt *DefaultCase = nullptr; in FindCaseStatementsForValue()
1513 if (const DefaultStmt *DS = dyn_cast<DefaultStmt>(Case)) { in FindCaseStatementsForValue()
1622 if (isa<DefaultStmt>(Case)) in EmitSwitchStmt()
H A DCodeGenPGO.cpp99 DefaultStmt, enumerator
274 return PGOHash::DefaultStmt; in DEFINE_NESTABLE_TRAVERSAL()
H A DCodeGenFunction.h2872 void EmitDefaultStmt(const DefaultStmt &S);
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DJumpDiagnostics.cpp623 else if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) in VerifyJumps()
H A DSemaStmt.cpp486 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt); in ActOnDefaultStmt()
879 DefaultStmt *TheDefaultStmt = nullptr; in ActOnFinishSwitchStmt()
886 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) { in ActOnFinishSwitchStmt()
H A DAnalysisBasedWarnings.cpp937 Range = cast<DefaultStmt>(Term)->getDefaultLoc(); in DiagUninitUse()
H A DTreeTransform.h6595 TreeTransform<Derived>::TransformDefaultStmt(DefaultStmt *S) { in TransformDefaultStmt()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h1544 class DefaultStmt : public SwitchCase {
1548 DefaultStmt(SourceLocation DL, SourceLocation CL, Stmt *substmt) in DefaultStmt() function
1552 explicit DefaultStmt(EmptyShell Empty) in DefaultStmt() function
1578 else if (const auto *DS = dyn_cast<DefaultStmt>(this)) in getEndLoc()
1586 else if (auto *DS = dyn_cast<DefaultStmt>(this)) in getSubStmt()
H A DRecursiveASTVisitor.h2164 DEF_TRAVERSE_STMT(DefaultStmt, {})
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td29 def DefaultStmt : DStmt<SwitchCase>;
/freebsd-12.1/contrib/llvm/tools/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp709 const internal::VariadicDynCastAllOfMatcher<Stmt, DefaultStmt> defaultStmt;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp189 void ASTStmtReader::VisitDefaultStmt(DefaultStmt *S) { in VisitDefaultStmt()
2371 S = new (Context) DefaultStmt(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp109 void ASTStmtWriter::VisitDefaultStmt(DefaultStmt *S) { in VisitDefaultStmt()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtProfile.cpp249 void StmtProfiler::VisitDefaultStmt(const DefaultStmt *S) { in VisitDefaultStmt()
H A DStmtPrinter.cpp223 void StmtPrinter::VisitDefaultStmt(DefaultStmt *Node) { in VisitDefaultStmt()
H A DASTImporter.cpp517 ExpectedStmt VisitDefaultStmt(DefaultStmt *S);
5674 ExpectedStmt ASTNodeImporter::VisitDefaultStmt(DefaultStmt *S) { in VisitDefaultStmt()
5683 return new (Importer.getToContext()) DefaultStmt( in VisitDefaultStmt()
H A DExprConstant.cpp3982 if (isa<DefaultStmt>(SC)) { in EvaluateSwitch()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2028 extern const internal::VariadicDynCastAllOfMatcher<Stmt, DefaultStmt>