Lines Matching full:variable
22 use(a.weakProp); // expected-warning{{weak property 'weakProp' is accessed multiple times in this function but may be unpredictably set to nil; assign to a strong variable to keep the object alive}}
66 use(a.strongProp.weakProp); // expected-warning{{weak property 'weakProp' may be accessed multiple times in this function and may be unpredictably set to nil; assign to a strong variable to keep the object alive}}
92 use(a->weakIvar); // expected-warning{{weak instance variable 'weakIvar' is accessed multiple times}}
98 use(a); // expected-warning{{weak variable 'a' is accessed multiple times}}
139 use(a->weakIvar); // expected-warning{{weak instance variable 'weakIvar' is accessed multiple times}}
145 use(a); // expected-warning{{weak variable 'a' is accessed multiple times}}
281 use(a); // expected-warning{{weak variable 'a' is accessed multiple times in this function}}
298 use(self.weakProp); // expected-warning{{weak property 'weakProp' is accessed multiple times in this method but may be unpredictably set to nil; assign to a strong variable to keep the object alive}}
303 use(weakIvar); // expected-warning{{weak instance variable 'weakIvar' is accessed multiple times in this method but may be unpredictably set to nil; assign to a strong variable to keep the object alive}}
314 use(self->ivar->weakIvar); // expected-warning{{weak instance variable 'weakIvar' is accessed multiple times}}
362 use(a.weakProp); // expected-warning{{weak property 'weakProp' is accessed multiple times in this function but may be unpredictably set to nil; assign to a strong variable to keep the object alive}}