Lines Matching full:owner
40 BlockOwner *owner; field
42 @property (retain) BlockOwner *owner; property
47 …x->owner.strong = ^{ (void) x; }; // expected-warning {{retain cycle}} expected-note {{block will …
48 …x.owner.strong = ^{ (void) x; }; // expected-warning {{retain cycle}} expected-note {{block will b…
57 @dynamic owner;
62 …self.owner.strong = ^{ (void) owner; }; // expected-warning {{retain cycle}} expected-note {{block…
63 self.owner2.strong = ^{ (void) owner; };
66 self.owner3.strong = ^{ (void) owner; };
68 …owner.strong = ^{ (void) owner; }; // expected-warning {{retain cycle}} expected-note {{block will…
70 …owner.strong = ^{ ^{ (void) owner; }(); }; // expected-warning {{retain cycle}} expected-note {{bl…
72 …owner.strong = ^{ (void) sizeof(self); // expected-note {{block will be retained by an object stro…
73 …(void) owner; }; // expected-warning {{capturing 'self' strongly in this block is likely to lead t…
75 weakowner.strong = ^{ (void) owner; };
80 …owner.strong = ^{ (void) owner; }; // expected-warning {{retain cycle}} expected-note {{block will…