Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:foop

3857   Foo* foop PT_GUARDED_BY(mu_);
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}}
3876 foop->c = Cell(0); // expected-warning {{writing the value pointed to by 'foop' requires locking 'mu_'}} \
3877 // expected-warning {{writing variable 'c' requires locking 'foop->cell_mu_' exclusively}}
3878 foop->c.cellMethod(); // expected-warning {{reading the value pointed to by 'foop' requires locking 'mu_'}} \
3879 // expected-warning {{reading variable 'c' requires locking 'foop->cell_mu_'}}
3881 (*foop).c = Cell(0); // expected-warning {{writing the value pointed to by 'foop' requires locking 'mu_'}} \
3882 // expected-warning {{writing variable 'c' requires locking 'foop->cell_mu_' exclusively}}
3883 (*foop).c.cellMethod(); // expected-warning {{reading the value pointed to by 'foop' requires locking 'mu_'}} \
3884 // expected-warning {{reading variable 'c' requires locking 'foop->cell_mu_'}}