Searched refs:EmptyDecl (Results 1 – 11 of 11) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | Decl.cpp | 5039 void EmptyDecl::anchor() {} in anchor() 5041 EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) { in Create() 5042 return new (C, DC) EmptyDecl(DC, L); in Create() 5045 EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized() 5046 return new (C, ID) EmptyDecl(nullptr, SourceLocation()); in CreateDeserialized()
|
| H A D | DeclPrinter.cpp | 67 void VisitEmptyDecl(EmptyDecl *D); 979 void DeclPrinter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
|
| H A D | ASTImporter.cpp | 495 ExpectedDecl VisitEmptyDecl(EmptyDecl *D); 2266 ExpectedDecl ASTNodeImporter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl() 2277 EmptyDecl *ToD; in VisitEmptyDecl()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Decl.h | 4561 class EmptyDecl : public Decl { 4562 EmptyDecl(DeclContext *DC, SourceLocation L) : Decl(Empty, DC, L) {} in EmptyDecl() function 4567 static EmptyDecl *Create(ASTContext &C, DeclContext *DC, 4569 static EmptyDecl *CreateDeserialized(ASTContext &C, unsigned ID);
|
| H A D | RecursiveASTVisitor.h | 1441 DEF_TRAVERSE_DECL(EmptyDecl, {})
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaModule.cpp | 597 if (isa<EmptyDecl>(D)) in getUnnamedDeclKind()
|
| H A D | SemaDeclCXX.cpp | 16102 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); in ActOnEmptyDeclaration()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriterDecl.cpp | 131 void VisitEmptyDecl(EmptyDecl *D); 1158 void ASTDeclWriter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
|
| H A D | ASTReaderDecl.cpp | 407 void VisitEmptyDecl(EmptyDecl *D); 2441 void ASTDeclReader::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl() 4098 D = EmptyDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | BuildTree.cpp | 1521 bool WalkUpFromEmptyDecl(EmptyDecl *S) { in WalkUpFromEmptyDecl()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntime.cpp | 6598 if (isa<EmptyDecl>(D) || isa<DeclContext>(D) || in getSingleCompoundChild()
|