Searched refs:DefaultCon (Results 1 - 1 of 1) sorted by path

/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp8439 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create( local
8443 DefaultCon->setAccess(AS_public);
8444 DefaultCon->setDefaulted();
8445 DefaultCon->setImplicit();
8448 FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, DefaultCon);
8449 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, None, EPI));
8453 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
8455 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
8456 SetDeclDeleted(DefaultCon, ClassLoc);
8462 PushOnScopeChains(DefaultCon,
[all...]

Completed in 178 milliseconds