Lines Matching refs:PID
864 void DeclPrinter::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
865 Out << "@protocol " << PID << '\n';
866 VisitDeclContext(PID, false);
870 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) {
871 Out << "@implementation " << PID->getClassInterface() << '(' << PID << ")\n";
873 VisitDeclContext(PID, false);
878 void DeclPrinter::VisitObjCCategoryDecl(ObjCCategoryDecl *PID) {
879 Out << "@interface " << PID->getClassInterface() << '(' << PID << ")\n";
880 VisitDeclContext(PID, false);
961 void DeclPrinter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PID) {
962 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize)
966 Out << PID->getPropertyDecl();
967 if (PID->getPropertyIvarDecl())
968 Out << '=' << PID->getPropertyIvarDecl();