Home | History | Annotate | Download | only in SemaCXX

Lines Matching defs:elr

3548   void elr(Cell<T>* c) __attribute__((exclusive_locks_required(c->mu_)));
3554 void Foo::elr(Cell<T>* c1) { }
3558 elr(&cell); // \
3559 // expected-warning {{calling function 'elr' requires holding mutex 'cell.mu_' exclusively}}
3600 void elr(Cell<T>* c) __attribute__((exclusive_locks_required(c->mu_)));
3604 void FooT<T>::elr(Cell<T>* c1) { }
3609 foo.elr(&cell); // \
3610 // expected-warning {{calling function 'elr' requires holding mutex 'cell.mu_' exclusively}}