Home | History | Annotate | Download | only in Analysis

Lines Matching full:property

72   SomeInvalidationImplementingObject *_Ivar3; // no property, call -description
73 SomeInvalidationImplementingObject *_Ivar4; // no property, provide as argument to NSLog()
75 SomeInvalidationImplementingObject *_Prop1; // partially implemented property, set to 0 with dot syntax
77 SomeInvalidationImplementingObject *_propIvar; // property with custom named ivar, set to 0 via setter
80 SomeInvalidationImplementingObject *_Prop3; // property, invalidate via sending a message to a getter method
81 SomeInvalidationImplementingObject *_Prop4; // property with @synthesize, invalidate via property
82 SomeInvalidationImplementingObject *_Prop5; // property with @synthesize, invalidate via getter method
97 @property (assign) SomeInvalidationImplementingObject* Prop0;
98 @property (nonatomic, assign) SomeInvalidationImplementingObject* Prop1;
99 @property (assign) SomeInvalidationImplementingObject* Prop2;
100 @property (assign) SomeInvalidationImplementingObject* Prop3;
101 @property (assign) SomeInvalidationImplementingObject *Prop5;
102 @property (assign) SomeInvalidationImplementingObject *Prop4;
104 @property (assign) SomeInvalidationImplementingObject* Prop6; // automatically synthesized prop
105 @property (assign) SomeInvalidationImplementingObject* Prop7; // automatically synthesized prop
106 @property (assign) SomeInvalidationImplementingObject *SynthIvarProp;
108 @property (assign) NSObject* NProp0;
109 @property (nonatomic, assign) NSObject* NProp1;
110 @property (assign) NSObject* NProp2;
124 @property (assign) SomeInvalidationImplementingObject* Prop8;
125 @property (assign) SomeInvalidationImplementingObject* Prop10;
179 // expected-warning@-5 {{Property SynthIvarProp needs to be invalidated or set to nil}}
197 // Example, where the same property is inherited through
198 // the parent and directly through a protocol. If a property backing ivar is
202 @property (readonly, strong) id <Invalidation2> ObjB;
252 @property (assign) MissingInvalidationMethod *foobar15_warn;
254 // expected-warning@-2 {{Property foobar15_warn needs to be invalidated; no invalidation method is defined in the @implementation for MissingInvalidationMethod}}
287 @property (strong) Foo *bar1;