Searched refs:EmptyDecl (Results 1 – 8 of 8) sorted by relevance
/external/clang/lib/AST/ |
D | Decl.cpp | 3820 void EmptyDecl::anchor() {} in anchor() 3822 EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) { in Create() 3823 return new (C, DC) EmptyDecl(DC, L); in Create() 3826 EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized() 3827 return new (C, ID) EmptyDecl(nullptr, SourceLocation()); in CreateDeserialized()
|
D | DeclPrinter.cpp | 54 void VisitEmptyDecl(EmptyDecl *D); 752 void DeclPrinter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
|
/external/clang/include/clang/AST/ |
D | Decl.h | 3561 class EmptyDecl : public Decl { 3563 EmptyDecl(DeclContext *DC, SourceLocation L) in EmptyDecl() function 3567 static EmptyDecl *Create(ASTContext &C, DeclContext *DC, 3569 static EmptyDecl *CreateDeserialized(ASTContext &C, unsigned ID);
|
D | DataRecursiveASTVisitor.h | 1229 DEF_TRAVERSE_DECL(EmptyDecl, {})
|
D | RecursiveASTVisitor.h | 1294 DEF_TRAVERSE_DECL(EmptyDecl, {})
|
/external/clang/lib/Serialization/ |
D | ASTWriterDecl.cpp | 111 void VisitEmptyDecl(EmptyDecl *D); 830 void ASTDeclWriter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
|
D | ASTReaderDecl.cpp | 299 void VisitEmptyDecl(EmptyDecl *D); 1967 void ASTDeclReader::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl() 2805 D = EmptyDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
/external/clang/lib/Sema/ |
D | SemaDeclCXX.cpp | 11293 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); in ActOnEmptyDeclaration()
|