Searched refs:EmptyDecl (Results 1 – 12 of 12) sorted by relevance
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | Decl.cpp | 5292 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 D | DeclPrinter.cpp | 67 void VisitEmptyDecl(EmptyDecl *D); 987 void DeclPrinter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
|
| H A D | ASTImporter.cpp | 511 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 D | CGHLSLRuntime.cpp | 147 } else if (isa<CXXRecordDecl, EmptyDecl>(it)) { in addBufferDecls()
|
| H A D | CGOpenMPRuntime.cpp | 6153 if (isa<EmptyDecl>(D) || isa<DeclContext>(D) || in getSingleCompoundChild()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | Decl.h | 4763 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 D | RecursiveASTVisitor.h | 1535 DEF_TRAVERSE_DECL(EmptyDecl, {})
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaModule.cpp | 837 if (isa<EmptyDecl>(D)) in getUnnamedDeclKind()
|
| H A D | SemaDeclCXX.cpp | 16422 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); in ActOnEmptyDeclaration()
|
| /openbsd-src/gnu/llvm/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 413 void VisitEmptyDecl(EmptyDecl *D); 2637 void ASTDeclReader::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl() 3940 D = EmptyDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 136 void VisitEmptyDecl(EmptyDecl *D); 1187 void ASTDeclWriter::VisitEmptyDecl(EmptyDecl *D) { in VisitEmptyDecl()
|
| /openbsd-src/gnu/llvm/clang/lib/Tooling/Syntax/ |
| H A D | BuildTree.cpp | 1526 bool WalkUpFromEmptyDecl(EmptyDecl *S) { in WalkUpFromEmptyDecl()
|