Lines Matching refs:rhs
62 lldb_private::operator== (const VMRange& lhs, const VMRange& rhs) in operator ==() argument
64 … return lhs.GetBaseAddress() == rhs.GetBaseAddress() && lhs.GetEndAddress() == rhs.GetEndAddress(); in operator ==()
68 lldb_private::operator!= (const VMRange& lhs, const VMRange& rhs) in operator !=() argument
70 … return lhs.GetBaseAddress() != rhs.GetBaseAddress() || lhs.GetEndAddress() != rhs.GetEndAddress(); in operator !=()
74 lldb_private::operator< (const VMRange& lhs, const VMRange& rhs) in operator <() argument
76 if (lhs.GetBaseAddress() < rhs.GetBaseAddress()) in operator <()
78 else if (lhs.GetBaseAddress() > rhs.GetBaseAddress()) in operator <()
80 return lhs.GetEndAddress() < rhs.GetEndAddress(); in operator <()
84 lldb_private::operator<= (const VMRange& lhs, const VMRange& rhs) in operator <=() argument
86 if (lhs.GetBaseAddress() < rhs.GetBaseAddress()) in operator <=()
88 else if (lhs.GetBaseAddress() > rhs.GetBaseAddress()) in operator <=()
90 return lhs.GetEndAddress() <= rhs.GetEndAddress(); in operator <=()
94 lldb_private::operator> (const VMRange& lhs, const VMRange& rhs) in operator >() argument
96 if (lhs.GetBaseAddress() > rhs.GetBaseAddress()) in operator >()
98 else if (lhs.GetBaseAddress() < rhs.GetBaseAddress()) in operator >()
100 return lhs.GetEndAddress() > rhs.GetEndAddress(); in operator >()
104 lldb_private::operator>= (const VMRange& lhs, const VMRange& rhs) in operator >=() argument
106 if (lhs.GetBaseAddress() > rhs.GetBaseAddress()) in operator >=()
108 else if (lhs.GetBaseAddress() < rhs.GetBaseAddress()) in operator >=()
110 return lhs.GetEndAddress() >= rhs.GetEndAddress(); in operator >=()