Lines Matching refs:PDecl
1440 void DeclPrinter::VisitObjCPropertyDecl(ObjCPropertyDecl *PDecl) { in VisitObjCPropertyDecl() argument
1441 if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Required) in VisitObjCPropertyDecl()
1443 else if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Optional) in VisitObjCPropertyDecl()
1446 QualType T = PDecl->getType(); in VisitObjCPropertyDecl()
1449 if (PDecl->getPropertyAttributes() != ObjCPropertyAttribute::kind_noattr) { in VisitObjCPropertyDecl()
1452 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_class) { in VisitObjCPropertyDecl()
1457 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_direct) { in VisitObjCPropertyDecl()
1462 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1467 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_atomic) { in VisitObjCPropertyDecl()
1472 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_assign) { in VisitObjCPropertyDecl()
1476 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_retain) { in VisitObjCPropertyDecl()
1481 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_strong) { in VisitObjCPropertyDecl()
1485 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_copy) { in VisitObjCPropertyDecl()
1489 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) { in VisitObjCPropertyDecl()
1493 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1499 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1504 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_readonly) { in VisitObjCPropertyDecl()
1509 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_getter) { in VisitObjCPropertyDecl()
1511 PDecl->getGetterName().print(Out); in VisitObjCPropertyDecl()
1514 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_setter) { in VisitObjCPropertyDecl()
1516 PDecl->getSetterName().print(Out); in VisitObjCPropertyDecl()
1520 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1524 (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1538 std::string TypeStr = PDecl->getASTContext().getUnqualifiedObjCPointerType(T). in VisitObjCPropertyDecl()
1543 Out << *PDecl; in VisitObjCPropertyDecl()