Searched refs:EmptyDecl (Results 1 – 11 of 11) sorted by relevance
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | Decl.cpp | 5182 void EmptyDecl::anchor() {} in anchor() 5184 EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) { in Create() 5185 return new (C, DC) EmptyDecl(DC, L); in Create() 5188 EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized() 5189 return new (C, ID) EmptyDecl(nullptr, SourceLocation()); in CreateDeserialized()
|
| H A D | DeclPrinter.cpp | 67 void VisitEmptyDecl(EmptyDecl *D); 983 void DeclPrinter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
|
| H A D | ASTImporter.cpp | 514 ExpectedDecl VisitEmptyDecl(EmptyDecl *D); 2252 ExpectedDecl ASTNodeImporter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl() 2263 EmptyDecl *ToD; in VisitEmptyDecl()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | Decl.h | 4650 class EmptyDecl : public Decl { 4651 EmptyDecl(DeclContext *DC, SourceLocation L) : Decl(Empty, DC, L) {} in EmptyDecl() function 4656 static EmptyDecl *Create(ASTContext &C, DeclContext *DC, 4658 static EmptyDecl *CreateDeserialized(ASTContext &C, unsigned ID);
|
| H A D | RecursiveASTVisitor.h | 1552 DEF_TRAVERSE_DECL(EmptyDecl, {})
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaModule.cpp | 790 if (isa<EmptyDecl>(D)) in getUnnamedDeclKind()
|
| H A D | SemaDeclCXX.cpp | 16353 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); in ActOnEmptyDeclaration()
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 409 void VisitEmptyDecl(EmptyDecl *D); 2549 void ASTDeclReader::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl() 3848 D = EmptyDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 132 void VisitEmptyDecl(EmptyDecl *D); 1168 void ASTDeclWriter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
|
| /llvm-project-15.0.7/clang/lib/Tooling/Syntax/ |
| H A D | BuildTree.cpp | 1526 bool WalkUpFromEmptyDecl(EmptyDecl *S) { in WalkUpFromEmptyDecl()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntime.cpp | 6531 if (isa<EmptyDecl>(D) || isa<DeclContext>(D) || in getSingleCompoundChild()
|