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();
183 bool matches(const Matcher& that) const;
251 inline bool operator!=(const Matcher& that) const {
252 return mMatcher != that.getMatcher() || mMask != that.getMask();
255 inline bool operator==(const Matcher& that) const {
256 return mMatcher == that.mMatcher && mMask == that.mMask;
344 bool operator==(const Value& that) const;
345 bool operator!=(const Value& that) const;
347 bool operator<(const Value& that) const;
348 bool operator>(const Value& that) const;
349 bool operator>=(const Value& that) const;
350 Value operator-(const Value& that) const;
351 Value& operator+=(const Value& that);
352 Value& operator=(const Value& that);
362 bool operator==(const FieldValue& that) const {
363 return mField == that.mField && mValue == that.mValue;
365 bool operator!=(const FieldValue& that) const {
366 return mField != that.mField || mValue != that.mValue;
368 bool operator<(const FieldValue& that) const {
369 if (mField != that.mField) {
370 return mField < that.mField;
373 if (mValue != that.mValue) {
374 return mValue < that.mValue;