Lines Matching refs:PDecl

1474 void DeclPrinter::VisitObjCPropertyDecl(ObjCPropertyDecl *PDecl) {  in VisitObjCPropertyDecl()  argument
1475 if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Required) in VisitObjCPropertyDecl()
1477 else if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Optional) in VisitObjCPropertyDecl()
1480 QualType T = PDecl->getType(); in VisitObjCPropertyDecl()
1483 if (PDecl->getPropertyAttributes() != ObjCPropertyAttribute::kind_noattr) { in VisitObjCPropertyDecl()
1486 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_class) { in VisitObjCPropertyDecl()
1491 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_direct) { in VisitObjCPropertyDecl()
1496 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1501 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_atomic) { in VisitObjCPropertyDecl()
1506 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_assign) { in VisitObjCPropertyDecl()
1510 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_retain) { in VisitObjCPropertyDecl()
1515 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_strong) { in VisitObjCPropertyDecl()
1519 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_copy) { in VisitObjCPropertyDecl()
1523 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) { in VisitObjCPropertyDecl()
1527 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1533 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1538 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_readonly) { in VisitObjCPropertyDecl()
1543 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_getter) { in VisitObjCPropertyDecl()
1545 PDecl->getGetterName().print(Out); in VisitObjCPropertyDecl()
1548 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_setter) { in VisitObjCPropertyDecl()
1550 PDecl->getSetterName().print(Out); in VisitObjCPropertyDecl()
1554 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1558 (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1572 std::string TypeStr = PDecl->getASTContext().getUnqualifiedObjCPointerType(T). in VisitObjCPropertyDecl()
1577 Out << *PDecl; in VisitObjCPropertyDecl()