Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/lib/Analysis/
H A DProgramPoint.cpp170 assert(isa<DefaultStmt>(Label)); in printJson()
H A DCFG.cpp587 CFGBlock *VisitDefaultStmt(DefaultStmt *D);
2302 return VisitDefaultStmt(cast<DefaultStmt>(S)); in Visit()
4537 CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) { in VisitDefaultStmt()
5959 } else if (isa<DefaultStmt>(Label)) in print_block()
/src/contrib/llvm-project/clang/lib/Sema/
H A DJumpDiagnostics.cpp716 else if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) in VerifyJumps()
H A DSemaStmt.cpp566 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt); in ActOnDefaultStmt()
1299 DefaultStmt *TheDefaultStmt = nullptr; in ActOnFinishSwitchStmt()
1309 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) { in ActOnFinishSwitchStmt()
H A DAnalysisBasedWarnings.cpp984 Range = cast<DefaultStmt>(Term)->getDefaultLoc(); in DiagUninitUse()
H A DTreeTransform.h7902 StmtResult TreeTransform<Derived>::TransformDefaultStmt(DefaultStmt *S) { in TransformDefaultStmt()
/src/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp487 EmitDefaultStmt(cast<DefaultStmt>(*S), Attrs); in EmitSimpleStmt()
1815 void CodeGenFunction::EmitDefaultStmt(const DefaultStmt &S, in EmitDefaultStmt()
2024 const DefaultStmt *DefaultCase = nullptr; in FindCaseStatementsForValue()
2029 if (const DefaultStmt *DS = dyn_cast<DefaultStmt>(Case)) { in FindCaseStatementsForValue()
2195 if (isa<DefaultStmt>(Case)) in EmitSwitchStmt()
H A DCodeGenPGO.cpp105 DefaultStmt, enumerator
509 return PGOHash::DefaultStmt; in DEFINE_NESTABLE_TRAVERSAL()
H A DCoverageMappingGen.cpp1872 HasDefaultCase = HasDefaultCase || isa<DefaultStmt>(Case); in VisitSwitchStmt()
H A DCodeGenFunction.h3565 void EmitDefaultStmt(const DefaultStmt &S, ArrayRef<const Attr *> Attrs);
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DPtrTypesSemantics.cpp346 bool VisitDefaultStmt(const DefaultStmt *DS) { return VisitChildren(DS); } in VisitDefaultStmt()
/src/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h1960 class DefaultStmt : public SwitchCase {
1964 DefaultStmt(SourceLocation DL, SourceLocation CL, Stmt *substmt)
1968 explicit DefaultStmt(EmptyShell Empty)
1998 else if (const auto *DS = dyn_cast<DefaultStmt>(this))
2006 else if (auto *DS = dyn_cast<DefaultStmt>(this))
H A DRecursiveASTVisitor.h2430 DEF_TRAVERSE_STMT(DefaultStmt, {})
/src/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td25 def DefaultStmt : StmtNode<SwitchCase>;
/src/contrib/llvm-project/clang/lib/AST/Interp/
H A DCompiler.h211 bool visitDefaultStmt(const DefaultStmt *S);
H A DCompiler.cpp4195 return visitDefaultStmt(cast<DefaultStmt>(S)); in visitStmt()
4604 bool Compiler<Emitter>::visitDefaultStmt(const DefaultStmt *S) { in visitDefaultStmt()
/src/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp917 const internal::VariadicDynCastAllOfMatcher<Stmt, DefaultStmt> defaultStmt;
/src/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1454 bool WalkUpFromDefaultStmt(DefaultStmt *S) { in WalkUpFromDefaultStmt()
/src/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp187 void ASTStmtReader::VisitDefaultStmt(DefaultStmt *S) { in VisitDefaultStmt()
2949 S = new (Context) DefaultStmt(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp176 void ASTStmtWriter::VisitDefaultStmt(DefaultStmt *S) { in VisitDefaultStmt()
/src/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp269 void StmtProfiler::VisitDefaultStmt(const DefaultStmt *S) { in VisitDefaultStmt()
H A DStmtPrinter.cpp284 void StmtPrinter::VisitDefaultStmt(DefaultStmt *Node) { in VisitDefaultStmt()
H A DASTImporter.cpp537 ExpectedStmt VisitDefaultStmt(DefaultStmt *S);
6883 ExpectedStmt ASTNodeImporter::VisitDefaultStmt(DefaultStmt *S) { in VisitDefaultStmt()
6892 return new (Importer.getToContext()) DefaultStmt( in VisitDefaultStmt()
H A DExprConstant.cpp5118 if (isa<DefaultStmt>(SC)) { in EvaluateSwitch()
/src/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2358 extern const internal::VariadicDynCastAllOfMatcher<Stmt, DefaultStmt>