Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaDeclCXX.cpp8905 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create( in DeclareImplicitDefaultConstructor() local
8909 DefaultCon->setAccess(AS_public); in DeclareImplicitDefaultConstructor()
8910 DefaultCon->setDefaulted(); in DeclareImplicitDefaultConstructor()
8914 DefaultCon, in DeclareImplicitDefaultConstructor()
8920 FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, DefaultCon); in DeclareImplicitDefaultConstructor()
8921 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, None, EPI)); in DeclareImplicitDefaultConstructor()
8925 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor()); in DeclareImplicitDefaultConstructor()
8927 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor)) in DeclareImplicitDefaultConstructor()
8928 SetDeclDeleted(DefaultCon, ClassLoc); in DeclareImplicitDefaultConstructor()
8934 PushOnScopeChains(DefaultCon, S, false); in DeclareImplicitDefaultConstructor()
[all …]