Home | History | Annotate | Download | only in Checkers

Lines Matching defs:PD

353     const ObjCPropertyDecl *PD = IvarToPopertyMap.lookup(IvarDecl);
354 assert(PD &&"Do we synthesize ivars for something other than properties?");
355 os << "Property "<< PD->getName() << " ";
392 const ObjCPropertyDecl *PD = I->second;
394 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterfaceD, Ivars,
400 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl());
401 PropertyToIvarMap[PD] = ID;
402 IvarToPopertyMap[ID] = PD;
405 const ObjCMethodDecl *SetterD = PD->getSetterMethodDecl();
411 const ObjCMethodDecl *GetterD = PD->getGetterMethodDecl();
623 const ObjCPropertyDecl *PD = PA->getExplicitProperty();
624 if (PD) {
625 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl());
626 PropToIvarMapTy::const_iterator IvI = PropertyToIvarMap.find(PD);