Searched refs:EmptyDecl (Results 1 – 12 of 12) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGHLSLRuntime.cpp | 133 if (isa<CXXRecordDecl, EmptyDecl>(D)) in emitBufferGlobalsAndMetadata() 214 if (isa<CXXRecordDecl, EmptyDecl>(D) || isa<FunctionDecl>(D)) { in fillPackoffsetLayout()
|
| H A D | CGOpenMPRuntime.cpp | 6246 if (isa<EmptyDecl>(D) || isa<DeclContext>(D) || in getSingleCompoundChild()
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseHLSL.cpp | 33 if (isa<CXXRecordDecl, RecordDecl, FunctionDecl, VarDecl, EmptyDecl>(D)) in validateDeclsInsideHLSLBuffer()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | Decl.cpp | 5771 void EmptyDecl::anchor() {} in anchor() 5773 EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) { in Create() 5774 return new (C, DC) EmptyDecl(DC, L); in Create() 5777 EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, GlobalDeclID ID) { in CreateDeserialized() 5778 return new (C, ID) EmptyDecl(nullptr, SourceLocation()); in CreateDeserialized()
|
| H A D | DeclPrinter.cpp | 69 void VisitEmptyDecl(EmptyDecl *D); 1101 void DeclPrinter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
|
| H A D | ASTImporter.cpp | 516 ExpectedDecl VisitEmptyDecl(EmptyDecl *D); 2728 ExpectedDecl ASTNodeImporter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl() 2739 EmptyDecl *ToD; in VisitEmptyDecl()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Decl.h | 5087 class EmptyDecl : public Decl { 5088 EmptyDecl(DeclContext *DC, SourceLocation L) : Decl(Empty, DC, L) {} in EmptyDecl() function 5093 static EmptyDecl *Create(ASTContext &C, DeclContext *DC, 5095 static EmptyDecl *CreateDeserialized(ASTContext &C, GlobalDeclID ID);
|
| H A D | RecursiveASTVisitor.h | 1609 DEF_TRAVERSE_DECL(EmptyDecl, {})
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 411 void VisitEmptyDecl(EmptyDecl *D); 2775 void ASTDeclReader::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl() 4209 D = EmptyDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 150 void VisitEmptyDecl(EmptyDecl *D); 1449 void ASTDeclWriter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | BuildTree.cpp | 1519 bool WalkUpFromEmptyDecl(EmptyDecl *S) { in WalkUpFromEmptyDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDeclCXX.cpp | 17212 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); in ActOnEmptyDeclaration()
|