Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGHLSLRuntime.cpp147 } else if (isa<CXXRecordDecl, EmptyDecl>(it)) { in addBufferDecls()
H A DCGOpenMPRuntime.cpp5981 if (isa<EmptyDecl>(D) || isa<DeclContext>(D) || in getSingleCompoundChild()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp5549 void EmptyDecl::anchor() {} in anchor()
5551 EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) { in Create()
5552 return new (C, DC) EmptyDecl(DC, L); in Create()
5555 EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
5556 return new (C, ID) EmptyDecl(nullptr, SourceLocation()); in CreateDeserialized()
H A DDeclPrinter.cpp79 void VisitEmptyDecl(EmptyDecl *D);
1123 void DeclPrinter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
H A DASTImporter.cpp466 ExpectedDecl VisitEmptyDecl(EmptyDecl *D);
2411 ExpectedDecl ASTNodeImporter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
2422 EmptyDecl *ToD; in VisitEmptyDecl()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h4878 class EmptyDecl : public Decl {
4879 EmptyDecl(DeclContext *DC, SourceLocation L) : Decl(Empty, DC, L) {} in EmptyDecl() function
4884 static EmptyDecl *Create(ASTContext &C, DeclContext *DC,
4886 static EmptyDecl *CreateDeserialized(ASTContext &C, unsigned ID);
H A DRecursiveASTVisitor.h1526 DEF_TRAVERSE_DECL(EmptyDecl, {})
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp424 void VisitEmptyDecl(EmptyDecl *D);
2755 void ASTDeclReader::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
4105 D = EmptyDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp134 void VisitEmptyDecl(EmptyDecl *D);
1247 void ASTDeclWriter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1526 bool WalkUpFromEmptyDecl(EmptyDecl *S) { in WalkUpFromEmptyDecl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp16874 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); in ActOnEmptyDeclaration()