Home | History | Annotate | Download | only in AST

Lines Matching refs:PDecl

1075 void DeclPrinter::VisitObjCPropertyDecl(ObjCPropertyDecl *PDecl) {
1076 if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Required)
1078 else if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Optional)
1082 if (PDecl->getPropertyAttributes() != ObjCPropertyDecl::OBJC_PR_noattr) {
1085 if (PDecl->getPropertyAttributes() &
1091 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
1093 PDecl->getGetterName().print(Out);
1096 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
1098 PDecl->getSetterName().print(Out);
1102 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_assign) {
1107 if (PDecl->getPropertyAttributes() &
1113 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain) {
1118 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_strong) {
1123 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy) {
1128 if (PDecl->getPropertyAttributes() &
1133 if (PDecl->getPropertyAttributes() &
1142 Out << ' ' << PDecl->getASTContext().getUnqualifiedObjCPointerType(PDecl->getType()).
1143 getAsString(Policy) << ' ' << *PDecl;