Lines Matching refs:access
18 int access;
20 access = s->private;
21 access = s->protected;
31 int access;
33 access = s->private; // expected-error {{instance variable 'private' is private}}
34 access = s->protected;
36 access = m->private; // expected-error {{instance variable 'private' is private}}
37 access = m->protected;
47 int access;
49 access = s->private; // expected-error {{instance variable 'private' is private}}
50 access = s->protected;
52 access = m->private; // expected-error {{instance variable 'private' is private}}
53 access = m->protected;
62 int access;
64 access = s->private; // expected-error {{instance variable 'private' is private}}
65 access = s->protected; // expected-error {{instance variable 'protected' is protected}}
67 access = m->private; // expected-error {{instance variable 'private' is private}}
68 access = m->protected; // expected-error {{instance variable 'protected' is protected}}
75 int access;
76 access = s->private; // expected-error {{instance variable 'private' is private}}
77 access = s->protected; // expected-error {{instance variable 'protected' is protected}}