Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:fa

3862     int fa = foo.a;      // expected-warning {{reading variable 'foo' requires locking 'mu_'}}
3863 foo.a = fa; // expected-warning {{writing variable 'foo' requires locking 'mu_' exclusively}}
3865 fa = foop->a; // expected-warning {{reading the value pointed to by 'foop' requires locking 'mu_'}}
3866 foop->a = fa; // expected-warning {{writing the value pointed to by 'foop' requires locking 'mu_' exclusively}}
3868 fa = (*foop).a; // expected-warning {{reading the value pointed to by 'foop' requires locking 'mu_'}}
3869 (*foop).a = fa; // expected-warning {{writing the value pointed to by 'foop' requires locking 'mu_' exclusively}}