Searched refs:EmptyDecl (Results 1 – 10 of 10) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | Decl.cpp | 4614 void EmptyDecl::anchor() {} in anchor() 4616 EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) { in Create() 4617 return new (C, DC) EmptyDecl(DC, L); in Create() 4620 EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized() 4621 return new (C, ID) EmptyDecl(nullptr, SourceLocation()); in CreateDeserialized()
|
| H A D | DeclPrinter.cpp | 67 void VisitEmptyDecl(EmptyDecl *D); 913 void DeclPrinter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
|
| H A D | ASTImporter.cpp | 455 ExpectedDecl VisitEmptyDecl(EmptyDecl *D); 2077 ExpectedDecl ASTNodeImporter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl() 2088 EmptyDecl *ToD; in VisitEmptyDecl()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | Decl.h | 4259 class EmptyDecl : public Decl { 4260 EmptyDecl(DeclContext *DC, SourceLocation L) : Decl(Empty, DC, L) {} in EmptyDecl() function 4265 static EmptyDecl *Create(ASTContext &C, DeclContext *DC, 4267 static EmptyDecl *CreateDeserialized(ASTContext &C, unsigned ID);
|
| H A D | RecursiveASTVisitor.h | 1429 DEF_TRAVERSE_DECL(EmptyDecl, {})
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 407 void VisitEmptyDecl(EmptyDecl *D); 2401 void ASTDeclReader::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl() 3868 D = EmptyDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 126 void VisitEmptyDecl(EmptyDecl *D); 1097 void ASTDeclWriter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntimeNVPTX.cpp | 735 if (isa<EmptyDecl>(D) || isa<DeclContext>(D) || in getSingleCompoundChild()
|
| H A D | CGOpenMPRuntime.cpp | 8095 if (isa<EmptyDecl>(D) || isa<DeclContext>(D) || in getSingleCompoundChild()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaDeclCXX.cpp | 13695 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); in ActOnEmptyDeclaration()
|