Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DDecl.cpp4614 void EmptyDecl::anchor() {} in anchor()
4616 EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) { in Create()
4617 return new (C, DC) EmptyDecl(DC, L); in Create()
4620 EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
4621 return new (C, ID) EmptyDecl(nullptr, SourceLocation()); in CreateDeserialized()
H A DDeclPrinter.cpp67 void VisitEmptyDecl(EmptyDecl *D);
913 void DeclPrinter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
H A DASTImporter.cpp455 ExpectedDecl VisitEmptyDecl(EmptyDecl *D);
2077 ExpectedDecl ASTNodeImporter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
2088 EmptyDecl *ToD; in VisitEmptyDecl()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DDecl.h4259 class EmptyDecl : public Decl {
4260 EmptyDecl(DeclContext *DC, SourceLocation L) : Decl(Empty, DC, L) {} in EmptyDecl() function
4265 static EmptyDecl *Create(ASTContext &C, DeclContext *DC,
4267 static EmptyDecl *CreateDeserialized(ASTContext &C, unsigned ID);
H A DRecursiveASTVisitor.h1429 DEF_TRAVERSE_DECL(EmptyDecl, {})
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderDecl.cpp407 void VisitEmptyDecl(EmptyDecl *D);
2401 void ASTDeclReader::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
3868 D = EmptyDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp126 void VisitEmptyDecl(EmptyDecl *D);
1097 void ASTDeclWriter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGOpenMPRuntimeNVPTX.cpp735 if (isa<EmptyDecl>(D) || isa<DeclContext>(D) || in getSingleCompoundChild()
H A DCGOpenMPRuntime.cpp8095 if (isa<EmptyDecl>(D) || isa<DeclContext>(D) || in getSingleCompoundChild()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclCXX.cpp13695 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); in ActOnEmptyDeclaration()