reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
997 if (Attrs != ObjCPropertyDecl::OBJC_PR_noattr) { 998 if (Attrs & ObjCPropertyDecl::OBJC_PR_getter) 1000 if (Attrs & ObjCPropertyDecl::OBJC_PR_setter) 1002 attributeOnlyIfTrue("readonly", Attrs & ObjCPropertyDecl::OBJC_PR_readonly); 1003 attributeOnlyIfTrue("assign", Attrs & ObjCPropertyDecl::OBJC_PR_assign); 1005 Attrs & ObjCPropertyDecl::OBJC_PR_readwrite); 1006 attributeOnlyIfTrue("retain", Attrs & ObjCPropertyDecl::OBJC_PR_retain); 1007 attributeOnlyIfTrue("copy", Attrs & ObjCPropertyDecl::OBJC_PR_copy); 1009 Attrs & ObjCPropertyDecl::OBJC_PR_nonatomic); 1010 attributeOnlyIfTrue("atomic", Attrs & ObjCPropertyDecl::OBJC_PR_atomic); 1011 attributeOnlyIfTrue("weak", Attrs & ObjCPropertyDecl::OBJC_PR_weak); 1012 attributeOnlyIfTrue("strong", Attrs & ObjCPropertyDecl::OBJC_PR_strong); 1014 Attrs & ObjCPropertyDecl::OBJC_PR_unsafe_unretained); 1015 attributeOnlyIfTrue("class", Attrs & ObjCPropertyDecl::OBJC_PR_class); 1017 Attrs & ObjCPropertyDecl::OBJC_PR_nullability); 1019 Attrs & ObjCPropertyDecl::OBJC_PR_null_resettable);