Searched refs:AccessSpecDecl (Results 1 - 14 of 14) sorted by relevance

/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclCXX.h102 class AccessSpecDecl : public Decl { class in namespace:clang
107 AccessSpecDecl(AccessSpecifier AS, DeclContext *DC, function in class:clang::AccessSpecDecl
112 AccessSpecDecl(EmptyShell Empty) function in class:clang::AccessSpecDecl
129 static AccessSpecDecl *Create(ASTContext &C, AccessSpecifier AS,
132 return new (C) AccessSpecDecl(AS, DC, ASLoc, ColonLoc);
134 static AccessSpecDecl *CreateDeserialized(ASTContext &C, unsigned ID);
H A DRecursiveASTVisitor.h1288 DEF_TRAVERSE_DECL(AccessSpecDecl, { })
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclCXX.cpp31 void AccessSpecDecl::anchor() { }
33 AccessSpecDecl *AccessSpecDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
34 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(AccessSpecDecl));
35 return new (Mem) AccessSpecDecl(EmptyShell());
H A DASTDumper.cpp246 void VisitAccessSpecDecl(const AccessSpecDecl *D);
1233 void ASTDumper::VisitAccessSpecDecl(const AccessSpecDecl *D) {
H A DDeclPrinter.cpp283 if (isa<AccessSpecDecl>(*D)) {
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriterDecl.cpp105 void VisitAccessSpecDecl(AccessSpecDecl *D);
1063 void ASTDeclWriter::VisitAccessSpecDecl(AccessSpecDecl *D) {
H A DASTReaderDecl.cpp279 void VisitAccessSpecDecl(AccessSpecDecl *D);
1375 void ASTDeclReader::VisitAccessSpecDecl(AccessSpecDecl *D) {
2443 D = AccessSpecDecl::CreateDeserialized(Context, ID);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchers.h253 AccessSpecDecl> accessSpecDecl;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp383 Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
384 AccessSpecDecl* AD
385 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
H A DSemaAccess.cpp1140 // Check whether there's an AccessSpecDecl preceding this in the
1147 if (isa<AccessSpecDecl>(*I)) {
H A DSemaDeclAttr.cpp4965 bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
H A DSemaDeclCXX.cpp1741 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
H A DSemaDecl.cpp3684 } else if (isa<AccessSpecDecl>(*Mem)) {
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h2553 bool ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,

Completed in 322 milliseconds