HomeSort by: relevance | last modified time | path
    Searched refs:DefaultStmt (Results 1 - 21 of 21) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ProgramPoint.cpp 170 assert(isa<DefaultStmt>(Label));
CFG.cpp 569 CFGBlock *VisitDefaultStmt(DefaultStmt *D);
2232 return VisitDefaultStmt(cast<DefaultStmt>(S));
4254 CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) {
5657 } else if (isa<DefaultStmt>(Label))
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmt.cpp 421 EmitDefaultStmt(cast<DefaultStmt>(*S), Attrs);
1487 void CodeGenFunction::EmitDefaultStmt(const DefaultStmt &S,
1696 const DefaultStmt *DefaultCase = nullptr;
1701 if (const DefaultStmt *DS = dyn_cast<DefaultStmt>(Case)) {
1867 if (isa<DefaultStmt>(Case))
CodeGenPGO.cpp 100 DefaultStmt,
292 return PGOHash::DefaultStmt;
CoverageMappingGen.cpp 1321 HasDefaultCase = HasDefaultCase || isa<DefaultStmt>(Case);
CodeGenFunction.h 3194 void EmitDefaultStmt(const DefaultStmt &S, ArrayRef<const Attr *> Attrs);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
JumpDiagnostics.cpp 682 else if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC))
SemaStmt.cpp 530 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt);
1231 DefaultStmt *TheDefaultStmt = nullptr;
1238 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) {
AnalysisBasedWarnings.cpp 957 Range = cast<DefaultStmt>(Term)->getDefaultLoc();
TreeTransform.h 7259 StmtResult TreeTransform<Derived>::TransformDefaultStmt(DefaultStmt *S) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 1520 // SwitchCase is the base class for CaseStmt and DefaultStmt,
1529 /// A pointer to the following CaseStmt or DefaultStmt class,
1722 class DefaultStmt : public SwitchCase {
1726 DefaultStmt(SourceLocation DL, SourceLocation CL, Stmt *substmt)
1730 explicit DefaultStmt(EmptyShell Empty)
1760 else if (const auto *DS = dyn_cast<DefaultStmt>(this))
1762 llvm_unreachable("SwitchCase is neither a CaseStmt nor a DefaultStmt!");
1768 else if (auto *DS = dyn_cast<DefaultStmt>(this))
1770 llvm_unreachable("SwitchCase is neither a CaseStmt nor a DefaultStmt!");
RecursiveASTVisitor.h 2252 DEF_TRAVERSE_STMT(DefaultStmt, {})
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 895 const internal::VariadicDynCastAllOfMatcher<Stmt, DefaultStmt> defaultStmt;
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
BuildTree.cpp 1448 bool WalkUpFromDefaultStmt(DefaultStmt *S) {
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 181 void ASTStmtReader::VisitDefaultStmt(DefaultStmt *S) {
2719 S = new (Context) DefaultStmt(Empty);
ASTWriterStmt.cpp 110 void ASTStmtWriter::VisitDefaultStmt(DefaultStmt *S) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
StmtPrinter.cpp 219 void StmtPrinter::VisitDefaultStmt(DefaultStmt *Node) {
StmtProfile.cpp 249 void StmtProfiler::VisitDefaultStmt(const DefaultStmt *S) {
ASTImporter.cpp 546 ExpectedStmt VisitDefaultStmt(DefaultStmt *S);
6156 ExpectedStmt ASTNodeImporter::VisitDefaultStmt(DefaultStmt *S) {
6165 return new (Importer.getToContext()) DefaultStmt(
ExprConstant.cpp 4943 if (isa<DefaultStmt>(SC)) {
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 2267 /// defaultStmt()
2269 extern const internal::VariadicDynCastAllOfMatcher<Stmt, DefaultStmt>
2270 defaultStmt;

Completed in 132 milliseconds