Lines Matching refs:owner
41 BlockOwner *owner; field
43 @property (retain) BlockOwner *owner; property
48 …x->owner.strong = ^{ (void) x; }; // expected-warning {{retain cycle}} expected-note {{block will …
49 …x.owner.strong = ^{ (void) x; }; // expected-warning {{retain cycle}} expected-note {{block will b…
58 @dynamic owner;
63 …self.owner.strong = ^{ (void) owner; }; // expected-warning {{retain cycle}} expected-note {{block…
64 self.owner2.strong = ^{ (void) owner; };
67 self.owner3.strong = ^{ (void) owner; };
69 …owner.strong = ^{ (void) owner; }; // expected-warning {{retain cycle}} expected-note {{block will…
71 …owner.strong = ^{ ^{ (void) owner; }(); }; // expected-warning {{retain cycle}} expected-note {{bl…
73 …owner.strong = ^{ (void) sizeof(self); // expected-note {{block will be retained by an object stro…
74 …(void) owner; }; // expected-warning {{capturing 'self' strongly in this block is likely to lead t…
76 weakowner.strong = ^{ (void) owner; };
81 …owner.strong = ^{ (void) owner; }; // expected-warning {{retain cycle}} expected-note {{block will…