Home | History | Annotate | Download | only in Checkers

Lines Matching defs:MD

76     void addInvalidationMethod(const ObjCMethodDecl *MD) {
77 InvalidationMethods.insert(MD);
84 bool hasMethod(const ObjCMethodDecl *MD) {
89 if (*I == MD) {
610 const ObjCMethodDecl *MD = ME->getMethodDecl();
611 if (MD) {
612 MD = cast<ObjCMethodDecl>(MD->getCanonicalDecl());
613 MethToIvarMapTy::const_iterator IvI = PropertyGetterToIvarMap.find(MD);
634 const ObjCMethodDecl *MD = PA->getImplicitPropertySetter();
635 if (MD) {
636 MD = cast<ObjCMethodDecl>(MD->getCanonicalDecl());
637 MethToIvarMapTy::const_iterator IvI =PropertyGetterToIvarMap.find(MD);
696 const ObjCMethodDecl *MD = ME->getMethodDecl();
700 if (Receiver && isInvalidationMethod(MD, /*LookForPartial*/ false))
707 if (MD && (ME->getNumArgs() == 1) && isZero(ME->getArg(0))) {
708 MD = cast<ObjCMethodDecl>(MD->getCanonicalDecl());
709 MethToIvarMapTy::const_iterator IvI = PropertySetterToIvarMap.find(MD);
718 InvalidationMethod = MD;