• Home
  • Raw
  • Download

Lines Matching refs:PDecl

1049 void DeclPrinter::VisitObjCPropertyDecl(ObjCPropertyDecl *PDecl) {  in VisitObjCPropertyDecl()  argument
1050 if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Required) in VisitObjCPropertyDecl()
1052 else if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Optional) in VisitObjCPropertyDecl()
1056 if (PDecl->getPropertyAttributes() != ObjCPropertyDecl::OBJC_PR_noattr) { in VisitObjCPropertyDecl()
1059 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1065 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) { in VisitObjCPropertyDecl()
1067 << PDecl->getGetterName().getAsString(); in VisitObjCPropertyDecl()
1070 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) { in VisitObjCPropertyDecl()
1072 << PDecl->getSetterName().getAsString(); in VisitObjCPropertyDecl()
1076 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_assign) { in VisitObjCPropertyDecl()
1081 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1087 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain) { in VisitObjCPropertyDecl()
1092 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_strong) { in VisitObjCPropertyDecl()
1097 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy) { in VisitObjCPropertyDecl()
1102 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1107 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1116 Out << ' ' << PDecl->getType().getAsString(Policy) << ' ' << *PDecl; in VisitObjCPropertyDecl()