Lines Matching refs:ObjCPropertyAttribute
2233 ObjCPropertyAttribute::Kind Attrs = D->getPropertyAttributes();
2234 if (Attrs != ObjCPropertyAttribute::kind_noattr) {
2235 if (Attrs & ObjCPropertyAttribute::kind_readonly)
2237 if (Attrs & ObjCPropertyAttribute::kind_assign)
2239 if (Attrs & ObjCPropertyAttribute::kind_readwrite)
2241 if (Attrs & ObjCPropertyAttribute::kind_retain)
2243 if (Attrs & ObjCPropertyAttribute::kind_copy)
2245 if (Attrs & ObjCPropertyAttribute::kind_nonatomic)
2247 if (Attrs & ObjCPropertyAttribute::kind_atomic)
2249 if (Attrs & ObjCPropertyAttribute::kind_weak)
2251 if (Attrs & ObjCPropertyAttribute::kind_strong)
2253 if (Attrs & ObjCPropertyAttribute::kind_unsafe_unretained)
2255 if (Attrs & ObjCPropertyAttribute::kind_class)
2257 if (Attrs & ObjCPropertyAttribute::kind_direct)
2259 if (Attrs & ObjCPropertyAttribute::kind_getter)
2261 if (Attrs & ObjCPropertyAttribute::kind_setter)