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.cpp150 } else if (isa<CXXRecordDecl, EmptyDecl>(it)) { in addBufferDecls()
H A DCGOpenMPRuntime.cpp5996 if (isa<EmptyDecl>(D) || isa<DeclContext>(D) || in getSingleCompoundChild()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp5619 void EmptyDecl::anchor() {} in anchor()
5621 EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) { in Create()
5622 return new (C, DC) EmptyDecl(DC, L); in Create()
5625 EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, GlobalDeclID ID) { in CreateDeserialized()
5626 return new (C, ID) EmptyDecl(nullptr, SourceLocation()); in CreateDeserialized()
H A DDeclPrinter.cpp68 void VisitEmptyDecl(EmptyDecl *D);
1065 void DeclPrinter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
H A DASTImporter.cpp467 ExpectedDecl VisitEmptyDecl(EmptyDecl *D);
2459 ExpectedDecl ASTNodeImporter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
2470 EmptyDecl *ToD; in VisitEmptyDecl()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h4905 class EmptyDecl : public Decl {
4906 EmptyDecl(DeclContext *DC, SourceLocation L) : Decl(Empty, DC, L) {} in EmptyDecl() function
4911 static EmptyDecl *Create(ASTContext &C, DeclContext *DC,
4913 static EmptyDecl *CreateDeserialized(ASTContext &C, GlobalDeclID ID);
H A DRecursiveASTVisitor.h1581 DEF_TRAVERSE_DECL(EmptyDecl, {})
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp419 void VisitEmptyDecl(EmptyDecl *D);
2741 void ASTDeclReader::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
4129 D = EmptyDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp137 void VisitEmptyDecl(EmptyDecl *D);
1285 void ASTDeclWriter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1527 bool WalkUpFromEmptyDecl(EmptyDecl *S) { in WalkUpFromEmptyDecl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp16736 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); in ActOnEmptyDeclaration()