Lines Matching refs:PDecl

1238 void DeclPrinter::VisitObjCPropertyDecl(ObjCPropertyDecl *PDecl) {  in VisitObjCPropertyDecl()  argument
1239 if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Required) in VisitObjCPropertyDecl()
1241 else if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Optional) in VisitObjCPropertyDecl()
1244 QualType T = PDecl->getType(); in VisitObjCPropertyDecl()
1247 if (PDecl->getPropertyAttributes() != ObjCPropertyDecl::OBJC_PR_noattr) { in VisitObjCPropertyDecl()
1250 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1256 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) { in VisitObjCPropertyDecl()
1258 PDecl->getGetterName().print(Out); in VisitObjCPropertyDecl()
1261 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) { in VisitObjCPropertyDecl()
1263 PDecl->getSetterName().print(Out); in VisitObjCPropertyDecl()
1267 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_assign) { in VisitObjCPropertyDecl()
1272 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1278 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain) { in VisitObjCPropertyDecl()
1283 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_strong) { in VisitObjCPropertyDecl()
1288 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy) { in VisitObjCPropertyDecl()
1293 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1298 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1304 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1308 (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1319 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_class) { in VisitObjCPropertyDecl()
1327 Out << ' ' << PDecl->getASTContext().getUnqualifiedObjCPointerType(T). in VisitObjCPropertyDecl()
1328 getAsString(Policy) << ' ' << *PDecl; in VisitObjCPropertyDecl()