Home | History | Annotate | Download | only in unit

Lines Matching full:rhs

537   bool operator () (Key lhs, Key rhs) const
538 { return lhs.m_data == rhs.m_data; }
540 bool operator () (Key lhs, int rhs) const
541 { return lhs.m_data == rhs; }
543 bool operator () (int lhs, Key rhs) const
544 { return lhs == rhs.m_data; }
558 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const
559 { return lhs->m_data == rhs->m_data; }
561 bool operator () (Key const volatile *lhs, int rhs) const
562 { return lhs->m_data == rhs; }
564 bool operator () (int lhs, Key const volatile *rhs) const
565 { return lhs == rhs->m_data; }