Home | History | Annotate | Download | only in Basic

Lines Matching refs:LHS

85   friend bool operator==(const ReturnAdjustment &LHS, 
87 return LHS.NonVirtual == RHS.NonVirtual && LHS.Virtual.Equals(RHS.Virtual);
90 friend bool operator!=(const ReturnAdjustment &LHS, const ReturnAdjustment &RHS) {
91 return !(LHS == RHS);
94 friend bool operator<(const ReturnAdjustment &LHS,
96 if (LHS.NonVirtual < RHS.NonVirtual)
99 return LHS.NonVirtual == RHS.NonVirtual && LHS.Virtual.Less(RHS.Virtual);
153 friend bool operator==(const ThisAdjustment &LHS,
155 return LHS.NonVirtual == RHS.NonVirtual && LHS.Virtual.Equals(RHS.Virtual);
158 friend bool operator!=(const ThisAdjustment &LHS, const ThisAdjustment &RHS) {
159 return !(LHS == RHS);
162 friend bool operator<(const ThisAdjustment &LHS,
164 if (LHS.NonVirtual < RHS.NonVirtual)
167 return LHS.NonVirtual == RHS.NonVirtual && LHS.Virtual.Less(RHS.Virtual);
195 friend bool operator==(const ThunkInfo &LHS, const ThunkInfo &RHS) {
196 return LHS.This == RHS.This && LHS.Return == RHS.Return &&
197 LHS.Method == RHS.Method;