Home | History | Annotate | Download | only in Sema

Lines Matching defs:MD

141     if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
142 if (const ObjCPropertyDecl *PD = MD->findPropertyDecl()) {
409 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
410 numFormalParams = MD->param_size();
2013 else if (auto *MD = dyn_cast<CXXMethodDecl>(S.CurContext))
2014 RD = MD->getParent();
9357 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
9358 if (MD->isConst()) {
9361 << ConstMethod << MD;
9364 S.Diag(MD->getLocation(), diag::note_typecheck_assign_const)
9365 << ConstMethod << MD << MD->getSourceRange();
9914 CXXMethodDecl *MD = cast<CXXMethodDecl>(DRE->getDecl());
9923 if (MD->getParent()->getName().empty())
9928 StringRef Qual = (MD->getParent()->getName() + "::").toStringRef(Str);
9936 if (isa<CXXDestructorDecl>(MD))
9940 op->getType(), Context.getTypeDeclType(MD->getParent()).getTypePtr());
12445 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Func);
12446 if (!Func->isImplicitlyInstantiable() && (!MD || MD->isUserProvided()))
13559 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ME->getMemberDecl());
13560 if (!MD)
13563 bool IsVirtualCall = MD->isVirtual() &&
13571 CXXMethodDecl *DM = MD->getCorrespondingMethodInClass(MostDerivedClassDecl);
14353 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
14354 if (MD->isInstance()) {