Lines Matching full:that
47 * Field is a wrapper class for 2 integers that represents the field of a log element in its Atom
67 * The first bit of each 8bits field is reserved to mark if the item is the last item at that level
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;
212 * the result is equal to the Matcher Field. That's a bit wise AND operation + check if 2 ints are
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;
318 bool operator==(const Value& that) const;
319 bool operator!=(const Value& that) const;
321 bool operator<(const Value& that) const;
331 bool operator==(const FieldValue& that) const {
332 return mField == that.mField && mValue == that.mValue;
334 bool operator!=(const FieldValue& that) const {
335 return mField != that.mField || mValue != that.mValue;
337 bool operator<(const FieldValue& that) const {
338 if (mField != that.mField) {
339 return mField < that.mField;
342 if (mValue != that.mValue) {
343 return mValue < that.mValue;