Lines Matching full:that
2 // Use of this source code is governed by a BSD-style license that can be
25 bool operator==(const PWL_SCROLL_INFO& that) const {
26 return fContentMin == that.fContentMin && fContentMax == that.fContentMax &&
27 fPlateWidth == that.fPlateWidth && fBigStep == that.fBigStep &&
28 fSmallStep == that.fSmallStep;
30 bool operator!=(const PWL_SCROLL_INFO& that) const {
31 return !(*this == that);
72 bool operator==(const PWL_FLOATRANGE& that) const {
73 return fMin == that.fMin && fMax == that.fMax;
75 bool operator!=(const PWL_FLOATRANGE& that) const { return !(*this == that); }
90 bool operator==(const PWL_SCROLL_PRIVATEDATA& that) const {
91 return ScrollRange == that.ScrollRange &&
92 fClientWidth == that.fClientWidth && fScrollPos == that.fScrollPos &&
93 fBigStep == that.fBigStep && fSmallStep == that.fSmallStep;
95 bool operator!=(const PWL_SCROLL_PRIVATEDATA& that) const {
96 return !(*this == that);