Lines Matching refs:PDecl
1392 void DeclPrinter::VisitObjCPropertyDecl(ObjCPropertyDecl *PDecl) { in VisitObjCPropertyDecl() argument
1393 if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Required) in VisitObjCPropertyDecl()
1395 else if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Optional) in VisitObjCPropertyDecl()
1398 QualType T = PDecl->getType(); in VisitObjCPropertyDecl()
1401 if (PDecl->getPropertyAttributes() != ObjCPropertyDecl::OBJC_PR_noattr) { in VisitObjCPropertyDecl()
1404 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1410 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) { in VisitObjCPropertyDecl()
1412 PDecl->getGetterName().print(Out); in VisitObjCPropertyDecl()
1415 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) { in VisitObjCPropertyDecl()
1417 PDecl->getSetterName().print(Out); in VisitObjCPropertyDecl()
1421 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_assign) { in VisitObjCPropertyDecl()
1426 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1432 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain) { in VisitObjCPropertyDecl()
1437 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_strong) { in VisitObjCPropertyDecl()
1442 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy) { in VisitObjCPropertyDecl()
1447 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1452 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1458 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1462 (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1473 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_class) { in VisitObjCPropertyDecl()
1481 Out << ' ' << PDecl->getASTContext().getUnqualifiedObjCPointerType(T). in VisitObjCPropertyDecl()
1482 getAsString(Policy) << ' ' << *PDecl; in VisitObjCPropertyDecl()