Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DProgramPoint.cpp170 assert(isa<DefaultStmt>(Label)); in printJson()
H A DCFG.cpp569 CFGBlock *VisitDefaultStmt(DefaultStmt *D);
2232 return VisitDefaultStmt(cast<DefaultStmt>(S)); in Visit()
4254 CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) { in VisitDefaultStmt()
5657 } else if (isa<DefaultStmt>(Label)) in print_block()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp421 EmitDefaultStmt(cast<DefaultStmt>(*S), Attrs); in EmitSimpleStmt()
1487 void CodeGenFunction::EmitDefaultStmt(const DefaultStmt &S, in EmitDefaultStmt()
1696 const DefaultStmt *DefaultCase = nullptr; in FindCaseStatementsForValue()
1701 if (const DefaultStmt *DS = dyn_cast<DefaultStmt>(Case)) { in FindCaseStatementsForValue()
1867 if (isa<DefaultStmt>(Case)) in EmitSwitchStmt()
H A DCodeGenPGO.cpp100 DefaultStmt, enumerator
292 return PGOHash::DefaultStmt; in DEFINE_NESTABLE_TRAVERSAL()
H A DCoverageMappingGen.cpp1321 HasDefaultCase = HasDefaultCase || isa<DefaultStmt>(Case); in VisitSwitchStmt()
H A DCodeGenFunction.h3194 void EmitDefaultStmt(const DefaultStmt &S, ArrayRef<const Attr *> Attrs);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DJumpDiagnostics.cpp682 else if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) in VerifyJumps()
H A DSemaStmt.cpp530 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt); in ActOnDefaultStmt()
1231 DefaultStmt *TheDefaultStmt = nullptr; in ActOnFinishSwitchStmt()
1238 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) { in ActOnFinishSwitchStmt()
H A DAnalysisBasedWarnings.cpp957 Range = cast<DefaultStmt>(Term)->getDefaultLoc(); in DiagUninitUse()
H A DTreeTransform.h7259 StmtResult TreeTransform<Derived>::TransformDefaultStmt(DefaultStmt *S) { in TransformDefaultStmt()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmt.h1722 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()
H A DRecursiveASTVisitor.h2252 DEF_TRAVERSE_STMT(DefaultStmt, {})
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td25 def DefaultStmt : StmtNode<SwitchCase>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp895 const internal::VariadicDynCastAllOfMatcher<Stmt, DefaultStmt> defaultStmt;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1448 bool WalkUpFromDefaultStmt(DefaultStmt *S) { in WalkUpFromDefaultStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp181 void ASTStmtReader::VisitDefaultStmt(DefaultStmt *S) { in VisitDefaultStmt()
2719 S = new (Context) DefaultStmt(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp110 void ASTStmtWriter::VisitDefaultStmt(DefaultStmt *S) { in VisitDefaultStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtProfile.cpp249 void StmtProfiler::VisitDefaultStmt(const DefaultStmt *S) { in VisitDefaultStmt()
H A DStmtPrinter.cpp219 void StmtPrinter::VisitDefaultStmt(DefaultStmt *Node) { in VisitDefaultStmt()
H A DASTImporter.cpp546 ExpectedStmt VisitDefaultStmt(DefaultStmt *S);
6156 ExpectedStmt ASTNodeImporter::VisitDefaultStmt(DefaultStmt *S) { in VisitDefaultStmt()
6165 return new (Importer.getToContext()) DefaultStmt( in VisitDefaultStmt()
H A DExprConstant.cpp4943 if (isa<DefaultStmt>(SC)) { in EvaluateSwitch()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2269 extern const internal::VariadicDynCastAllOfMatcher<Stmt, DefaultStmt>