Lines Matching refs:In
18 …- (void) someMethod: (MyClass*)In __attribute__((annotate("objc_no_direct_instance_variable_assign…
19 - (void) someMethodNotAnnaotated: (MyClass*)In;
46 - (void) someMethod: (MyClass*)In {
47 …(__A) = In; // expected-warning {{Direct assignment to an instance variable backing a property; us…
48 …_X = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t…
49 …_Y = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t…
50 …_Z = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t…
55 - (void) someMethodNotAnnaotated: (MyClass*)In {
56 (__A) = In;
57 _X = In; // no-warning
58 _Y = In; // no-warning
59 _Z = In; // no-warning