Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
DDecl.cpp3687 void EmptyDecl::anchor() {} in anchor()
3689 EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) { in Create()
3690 return new (C) EmptyDecl(DC, L); in Create()
3693 EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
3694 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(EmptyDecl)); in CreateDeserialized()
3695 return new (Mem) EmptyDecl(0, SourceLocation()); in CreateDeserialized()
DDeclPrinter.cpp54 void VisitEmptyDecl(EmptyDecl *D);
749 void DeclPrinter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/
DDecl.h3466 class EmptyDecl : public Decl {
3468 EmptyDecl(DeclContext *DC, SourceLocation L) in EmptyDecl() function
3472 static EmptyDecl *Create(ASTContext &C, DeclContext *DC,
3474 static EmptyDecl *CreateDeserialized(ASTContext &C, unsigned ID);
DRecursiveASTVisitor.h1308 DEF_TRAVERSE_DECL(EmptyDecl, { })
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/
DASTReaderDecl.cpp285 void VisitEmptyDecl(EmptyDecl *D);
1799 void ASTDeclReader::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
2569 D = EmptyDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
DASTWriterDecl.cpp111 void VisitEmptyDecl(EmptyDecl *D);
818 void ASTDeclWriter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaDeclCXX.cpp11018 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); in ActOnEmptyDeclaration()