Home | History | Annotate | Download | only in Checkers

Lines Matching defs:MD

757                                         const ObjCMethodDecl *MD,
774 const RetainSummary *getMethodSummary(const ObjCMethodDecl *MD) {
775 const ObjCInterfaceDecl *ID = MD->getClassInterface();
776 Selector S = MD->getSelector();
777 QualType ResultTy = MD->getReturnType();
780 if (MD->isInstanceMethod())
785 return getMethodSummary(S, ID, MD, ResultTy, *CachedSummaries);
788 const RetainSummary *getStandardMethodSummary(const ObjCMethodDecl *MD,
796 const ObjCMethodDecl *MD);
1361 const ObjCMethodDecl *MD) {
1362 if (!MD)
1369 if (MD->hasAttr<NSConsumesSelfAttr>())
1375 pi=MD->param_begin(), pe=MD->param_end();
1395 QualType RetTy = MD->getReturnType();
1396 if (Optional<RetEffect> RetE = getRetEffectFromAnnotations(RetTy, MD))
1401 RetainSummaryManager::getStandardMethodSummary(const ObjCMethodDecl *MD,
1408 switch (MD ? MD->getMethodFamily() : S.getMethodFamily()) {
1422 if (MD) {
1532 const ObjCMethodDecl *MD, QualType RetTy,
1539 Summ = getStandardMethodSummary(MD, S, RetTy);
1542 updateSummaryFromAnnotations(Summ, MD);
2359 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
2360 os << "whose name ('" << MD->getSelector().getAsString()
2375 const ObjCMethodDecl &MD = cast<ObjCMethodDecl>(EndN->getCodeDecl());
2376 os << " and returned from method '" << MD.getSelector().getAsString()
3517 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CD)) {
3518 const RetainSummary *Summ = Summaries.getMethodSummary(MD);
4015 CallEffects CallEffects::getEffect(const ObjCMethodDecl *MD) {
4016 createCallEffect(MD, Method);