Searched refs:TopLevelStmtDecl (Results 1 – 10 of 10) sorted by relevance
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | Decl.cpp | 5269 void TopLevelStmtDecl::anchor() {} in anchor() 5271 TopLevelStmtDecl *TopLevelStmtDecl::Create(ASTContext &C, Stmt *Statement) { in Create() 5279 return new (C, DC) TopLevelStmtDecl(DC, BeginLoc, Statement); in Create() 5282 TopLevelStmtDecl *TopLevelStmtDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized() 5285 TopLevelStmtDecl(/*DC=*/nullptr, SourceLocation(), /*S=*/nullptr); in CreateDeserialized() 5288 SourceRange TopLevelStmtDecl::getSourceRange() const { in getSourceRange()
|
| H A D | DeclPrinter.cpp | 75 void VisitTopLevelStmtDecl(TopLevelStmtDecl *D); 936 void DeclPrinter::VisitTopLevelStmtDecl(TopLevelStmtDecl *D) { in VisitTopLevelStmtDecl()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CodeGenModule.h | 597 std::pair<std::unique_ptr<CodeGenFunction>, const TopLevelStmtDecl *> 1608 void EmitTopLevelStmt(const TopLevelStmtDecl *D);
|
| H A D | CodeGenModule.cpp | 525 const TopLevelStmtDecl *TLSD = GlobalTopLevelStmtBlockInFlight.second; in Release() 6230 void CodeGenModule::EmitTopLevelStmt(const TopLevelStmtDecl *D) { in EmitTopLevelStmt() 6473 EmitTopLevelStmt(cast<TopLevelStmtDecl>(D)); in EmitTopLevelDecl()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | Decl.h | 4306 class TopLevelStmtDecl : public Decl { 4312 TopLevelStmtDecl(DeclContext *DC, SourceLocation L, Stmt *S) in TopLevelStmtDecl() function 4318 static TopLevelStmtDecl *Create(ASTContext &C, Stmt *Statement); 4319 static TopLevelStmtDecl *CreateDeserialized(ASTContext &C, unsigned ID);
|
| H A D | ASTNodeTraverser.h | 479 void VisitTopLevelStmtDecl(const TopLevelStmtDecl *D) { Visit(D->getStmt()); } in VisitTopLevelStmtDecl()
|
| H A D | RecursiveASTVisitor.h | 1546 DEF_TRAVERSE_DECL(TopLevelStmtDecl, { TRY_TO(TraverseStmt(D->getStmt())); })
|
| /openbsd-src/gnu/llvm/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 405 void VisitTopLevelStmtDecl(TopLevelStmtDecl *D); 1691 void ASTDeclReader::VisitTopLevelStmtDecl(TopLevelStmtDecl *D) { in VisitTopLevelStmtDecl() 3061 if (isa<FileScopeAsmDecl, TopLevelStmtDecl, ObjCProtocolDecl, ObjCImplDecl, in isConsumerInterestedIn() 3869 D = TopLevelStmtDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 128 void VisitTopLevelStmtDecl(TopLevelStmtDecl *D); 1181 void ASTDeclWriter::VisitTopLevelStmtDecl(TopLevelStmtDecl *D) { in VisitTopLevelStmtDecl() 2437 if (isa<FileScopeAsmDecl, TopLevelStmtDecl, ObjCImplDecl>(D)) in isRequiredDecl()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaDecl.cpp | 19798 auto *New = TopLevelStmtDecl::Create(Context, Statement); in ActOnTopLevelStmtDecl()
|