Home | History | Annotate | Download | only in unit

Lines Matching full:rhs

313   bool operator () (Key lhs, Key rhs) const
314 { return lhs.m_data < rhs.m_data; }
316 bool operator () (Key lhs, int rhs) const
317 { return lhs.m_data < rhs; }
319 bool operator () (int lhs, Key rhs) const
320 { return lhs < rhs.m_data; }
325 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const
326 { return (*lhs).m_data < (*rhs).m_data; }
328 bool operator () (Key const volatile *lhs, int rhs) const
329 { return (*lhs).m_data < rhs; }
331 bool operator () (int lhs, Key const volatile *rhs) const
332 { return lhs < (*rhs).m_data; }