Home | History | Annotate | Download | only in SemaObjC

Lines Matching full:property

13 @property (retain, nonatomic) id requestor;
14 @property (retain, nonatomic) id appleEventDescriptor;
33 @property (readwrite, retain) id<MyProtocol> myIvar;
46 @property (readonly) int; // expected-warning {{declaration does not declare anything}}
47 @property (readonly) ; // expected-error {{type name requires a specifier or qualifier}}
48 @property (readonly) int : 4; // expected-error {{property requires fields to be named}}
52 @property ( // expected-note {{to match this '('}}
56 @property (readonlyx) // expected-error {{unknown property attribute 'readonlyx'}}
59 @property ( // expected-note {{to match this '('}}
67 @property int inEyeDropperMode;
71 @property int inEyeDropperMode;
93 @property(readonly) int myStyle;
102 @property(retain) MDAInstance *instance;
106 return d.instance.path; // expected-error {{property 'path' cannot be found in forward class object 'MDAInstance'}}
116 @property (nonatomic, weak, readonly) UIView *bannerView;
121 @property (nonatomic, weak, readwrite) FRFakeBannerView *bannerView;