Lines Matching refs:get
43 int &get();
44 // expected-note@-1 8{{'get' returns a reference}}
69 if (&b.get() == 0) {}
71 if (&(b.get()) == 0) {}
74 if (&b.get() != 0) {}
76 if (&(b.get()) != 0) {}
80 if (&b_ptr->get() == 0) {}
82 if (&(b_ptr->get()) == 0) {}
85 if (&b_ptr->get() != 0) {}
87 if (&(b_ptr->get()) != 0) {}
90 int& (B::*m_ptr)() = &B::get;