Home
last modified time | relevance | path

Searched refs:EmptyDecl (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGHLSLRuntime.cpp133 if (isa<CXXRecordDecl, EmptyDecl>(D)) in emitBufferGlobalsAndMetadata()
214 if (isa<CXXRecordDecl, EmptyDecl>(D) || isa<FunctionDecl>(D)) { in fillPackoffsetLayout()
H A DCGOpenMPRuntime.cpp6246 if (isa<EmptyDecl>(D) || isa<DeclContext>(D) || in getSingleCompoundChild()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseHLSL.cpp33 if (isa<CXXRecordDecl, RecordDecl, FunctionDecl, VarDecl, EmptyDecl>(D)) in validateDeclsInsideHLSLBuffer()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp5771 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 DDeclPrinter.cpp69 void VisitEmptyDecl(EmptyDecl *D);
1101 void DeclPrinter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
H A DASTImporter.cpp516 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 DDecl.h5087 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 DRecursiveASTVisitor.h1609 DEF_TRAVERSE_DECL(EmptyDecl, {})
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp411 void VisitEmptyDecl(EmptyDecl *D);
2775 void ASTDeclReader::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
4209 D = EmptyDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp150 void VisitEmptyDecl(EmptyDecl *D);
1449 void ASTDeclWriter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1519 bool WalkUpFromEmptyDecl(EmptyDecl *S) { in WalkUpFromEmptyDecl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp17212 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); in ActOnEmptyDeclaration()