Home | History | Annotate | Download | only in work

Lines Matching defs:mTags

37     private @NonNull Set<String> mTags;
47 mTags = new HashSet<>(tags);
63 return mTags;
79 return mTags != null ? mTags.equals(that.mTags) : that.mTags == null;
87 result = 31 * result + (mTags != null ? mTags.hashCode() : 0);
97 + ", mTags=" + mTags