Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDecl.cpp5292 void EmptyDecl::anchor() {} in anchor()
5294 EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) { in Create()
5295 return new (C, DC) EmptyDecl(DC, L); in Create()
5298 EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
5299 return new (C, ID) EmptyDecl(nullptr, SourceLocation()); in CreateDeserialized()
H A DDeclPrinter.cpp67 void VisitEmptyDecl(EmptyDecl *D);
987 void DeclPrinter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
H A DASTImporter.cpp511 ExpectedDecl VisitEmptyDecl(EmptyDecl *D);
2246 ExpectedDecl ASTNodeImporter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
2257 EmptyDecl *ToD; in VisitEmptyDecl()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGHLSLRuntime.cpp147 } else if (isa<CXXRecordDecl, EmptyDecl>(it)) { in addBufferDecls()
H A DCGOpenMPRuntime.cpp6153 if (isa<EmptyDecl>(D) || isa<DeclContext>(D) || in getSingleCompoundChild()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDecl.h4763 class EmptyDecl : public Decl {
4764 EmptyDecl(DeclContext *DC, SourceLocation L) : Decl(Empty, DC, L) {} in EmptyDecl() function
4769 static EmptyDecl *Create(ASTContext &C, DeclContext *DC,
4771 static EmptyDecl *CreateDeserialized(ASTContext &C, unsigned ID);
H A DRecursiveASTVisitor.h1535 DEF_TRAVERSE_DECL(EmptyDecl, {})
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaModule.cpp837 if (isa<EmptyDecl>(D)) in getUnnamedDeclKind()
H A DSemaDeclCXX.cpp16422 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); in ActOnEmptyDeclaration()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderDecl.cpp413 void VisitEmptyDecl(EmptyDecl *D);
2637 void ASTDeclReader::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
3940 D = EmptyDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp136 void VisitEmptyDecl(EmptyDecl *D);
1187 void ASTDeclWriter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
/openbsd-src/gnu/llvm/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1526 bool WalkUpFromEmptyDecl(EmptyDecl *S) { in WalkUpFromEmptyDecl()