Home | History | Annotate | Download | only in Sema

Lines Matching refs:CtorDecl

393     CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function);
394 CXXRecordDecl *R = CtorDecl->getParent();
396 if (CtorDecl->getMinRequiredArguments() == 0 &&
397 CtorDecl->isExplicit() && R->getDeclName() &&
398 SemaRef.SourceMgr.isInSystemHeader(CtorDecl->getLocation())) {
421 SemaRef.Diag(CtorDecl->getLocation(),
3304 CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function);
3305 if (InitListSyntax && !Kind.AllowExplicit() && CtorDecl->isExplicit()) {
3313 Sequence.AddConstructorInitializationStep(CtorDecl,
6796 CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function);
6797 S.Diag(CtorDecl->getLocation(), diag::note_constructor_declared_here);