Home | History | Annotate | Download | only in Analysis

Lines Matching full:property

22 @property(retain) id X;
23 @property(retain) id Y;
24 @property(assign) id Z;
25 @property(assign) id K;
26 @property(readonly) id N;
27 @property(retain) id M;
28 @property(retain) id V;
29 @property(retain) id W;
36 @synthesize Y = _Y; // expected-warning{{The '_Y' instance variable was retained by a synthesized property but wasn't released in 'dealloc'}}
37 @synthesize Z = _Z; // expected-warning{{The '_Z' instance variable was not retained by a synthesized property but was released in 'dealloc'}}
42 @synthesize W = _W; // expected-warning{{The '_W' instance variable was retained by a synthesized property but wasn't released in 'dealloc'}}