Lines Matching refs:that
164 inline bool operator==(const Field& that) const {
165 return mTag == that.getTag() && mField == that.getField();
168 inline bool operator!=(const Field& that) const {
169 return mTag != that.getTag() || mField != that.getField();
172 bool operator<(const Field& that) const {
173 if (mTag != that.getTag()) {
174 return mTag < that.getTag();
177 if (mField != that.getField()) {
178 return mField < that.getField();
184 bool matches(const Matcher& that) const;
252 inline bool operator!=(const Matcher& that) const {
253 return mMatcher != that.getMatcher() || mMask != that.getMask();
256 inline bool operator==(const Matcher& that) const {
257 return mMatcher == that.mMatcher && mMask == that.mMask;
350 bool operator==(const Value& that) const;
351 bool operator!=(const Value& that) const;
353 bool operator<(const Value& that) const;
354 bool operator>(const Value& that) const;
355 bool operator>=(const Value& that) const;
356 Value operator-(const Value& that) const;
357 Value& operator+=(const Value& that);
358 Value& operator=(const Value& that);
418 bool operator==(const FieldValue& that) const {
419 return mField == that.mField && mValue == that.mValue;
421 bool operator!=(const FieldValue& that) const {
422 return mField != that.mField || mValue != that.mValue;
424 bool operator<(const FieldValue& that) const {
425 if (mField != that.mField) {
426 return mField < that.mField;
429 if (mValue != that.mValue) {
430 return mValue < that.mValue;