Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DProgramPoint.cpp170 assert(isa<DefaultStmt>(Label)); in printJson()
H A DCFG.cpp574 CFGBlock *VisitDefaultStmt(DefaultStmt *D);
2298 return VisitDefaultStmt(cast<DefaultStmt>(S)); in Visit()
4531 CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) { in VisitDefaultStmt()
5947 } else if (isa<DefaultStmt>(Label)) in print_block()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGStmt.cpp463 EmitDefaultStmt(cast<DefaultStmt>(*S), Attrs); in EmitSimpleStmt()
1618 void CodeGenFunction::EmitDefaultStmt(const DefaultStmt &S, in EmitDefaultStmt()
1827 const DefaultStmt *DefaultCase = nullptr; in FindCaseStatementsForValue()
1832 if (const DefaultStmt *DS = dyn_cast<DefaultStmt>(Case)) { in FindCaseStatementsForValue()
1998 if (isa<DefaultStmt>(Case)) in EmitSwitchStmt()
H A DCodeGenPGO.cpp101 DefaultStmt, enumerator
293 return PGOHash::DefaultStmt; in DEFINE_NESTABLE_TRAVERSAL()
H A DCoverageMappingGen.cpp1331 HasDefaultCase = HasDefaultCase || isa<DefaultStmt>(Case); in VisitSwitchStmt()
H A DCodeGenFunction.h3254 void EmitDefaultStmt(const DefaultStmt &S, ArrayRef<const Attr *> Attrs);
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DJumpDiagnostics.cpp687 else if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) in VerifyJumps()
H A DSemaStmt.cpp547 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt); in ActOnDefaultStmt()
1268 DefaultStmt *TheDefaultStmt = nullptr; in ActOnFinishSwitchStmt()
1275 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) { in ActOnFinishSwitchStmt()
H A DAnalysisBasedWarnings.cpp960 Range = cast<DefaultStmt>(Term)->getDefaultLoc(); in DiagUninitUse()
H A DTreeTransform.h7493 StmtResult TreeTransform<Derived>::TransformDefaultStmt(DefaultStmt *S) { in TransformDefaultStmt()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DStmt.h1767 class DefaultStmt : public SwitchCase {
1771 DefaultStmt(SourceLocation DL, SourceLocation CL, Stmt *substmt) in DefaultStmt() function
1775 explicit DefaultStmt(EmptyShell Empty) in DefaultStmt() function
1805 else if (const auto *DS = dyn_cast<DefaultStmt>(this)) in getEndLoc()
1813 else if (auto *DS = dyn_cast<DefaultStmt>(this)) in getSubStmt()
H A DRecursiveASTVisitor.h2389 DEF_TRAVERSE_STMT(DefaultStmt, {})
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DStmtNodes.td25 def DefaultStmt : StmtNode<SwitchCase>;
/openbsd-src/gnu/llvm/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp911 const internal::VariadicDynCastAllOfMatcher<Stmt, DefaultStmt> defaultStmt;
/openbsd-src/gnu/llvm/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1453 bool WalkUpFromDefaultStmt(DefaultStmt *S) { in WalkUpFromDefaultStmt()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DStmtProfile.cpp253 void StmtProfiler::VisitDefaultStmt(const DefaultStmt *S) { in VisitDefaultStmt()
H A DStmtPrinter.cpp283 void StmtPrinter::VisitDefaultStmt(DefaultStmt *Node) { in VisitDefaultStmt()
H A DASTImporter.cpp581 ExpectedStmt VisitDefaultStmt(DefaultStmt *S);
6532 ExpectedStmt ASTNodeImporter::VisitDefaultStmt(DefaultStmt *S) { in VisitDefaultStmt()
6541 return new (Importer.getToContext()) DefaultStmt( in VisitDefaultStmt()
H A DExprConstant.cpp5003 if (isa<DefaultStmt>(SC)) { in EvaluateSwitch()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderStmt.cpp186 void ASTStmtReader::VisitDefaultStmt(DefaultStmt *S) { in VisitDefaultStmt()
2834 S = new (Context) DefaultStmt(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp113 void ASTStmtWriter::VisitDefaultStmt(DefaultStmt *S) { in VisitDefaultStmt()
/openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2295 extern const internal::VariadicDynCastAllOfMatcher<Stmt, DefaultStmt>