Home | History | Annotate | Download | only in src

Lines Matching defs:mValue

329     FieldValue(const Field& field, const Value& value) : mField(field), mValue(value) {
332 return mField == that.mField && mValue == that.mValue;
335 return mField != that.mField || mValue != that.mValue;
342 if (mValue != that.mValue) {
343 return mValue < that.mValue;
350 Value mValue;