Lines Matching refs:PDecl
1487 void DeclPrinter::VisitObjCPropertyDecl(ObjCPropertyDecl *PDecl) { in VisitObjCPropertyDecl() argument
1488 if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Required) in VisitObjCPropertyDecl()
1490 else if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Optional) in VisitObjCPropertyDecl()
1493 QualType T = PDecl->getType(); in VisitObjCPropertyDecl()
1496 if (PDecl->getPropertyAttributes() != ObjCPropertyAttribute::kind_noattr) { in VisitObjCPropertyDecl()
1499 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_class) { in VisitObjCPropertyDecl()
1504 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_direct) { in VisitObjCPropertyDecl()
1509 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1514 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_atomic) { in VisitObjCPropertyDecl()
1519 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_assign) { in VisitObjCPropertyDecl()
1523 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_retain) { in VisitObjCPropertyDecl()
1528 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_strong) { in VisitObjCPropertyDecl()
1532 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_copy) { in VisitObjCPropertyDecl()
1536 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) { in VisitObjCPropertyDecl()
1540 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1546 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1551 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_readonly) { in VisitObjCPropertyDecl()
1556 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_getter) { in VisitObjCPropertyDecl()
1558 PDecl->getGetterName().print(Out); in VisitObjCPropertyDecl()
1561 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_setter) { in VisitObjCPropertyDecl()
1563 PDecl->getSetterName().print(Out); in VisitObjCPropertyDecl()
1567 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1571 (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1585 std::string TypeStr = PDecl->getASTContext().getUnqualifiedObjCPointerType(T). in VisitObjCPropertyDecl()
1590 Out << *PDecl; in VisitObjCPropertyDecl()