Home | History | Annotate | Download | only in model

Lines Matching refs:mName

47     private final String mName;
57 mName = name;
63 this(other.mId, other.mName, other.mPhone, other.mEmails);
71 return mName;
94 if (mName != null) {
96 StructuredName.DISPLAY_NAME, mName));
121 .add(ContactsContract.Contacts.DISPLAY_NAME_PRIMARY, mName)
126 return !TextUtils.isEmpty(mName);
143 if (mName != null) {
144 return "sim-n-" + Uri.encode(mName);
156 ", mName='" + mName + '\'' +
169 return mId == that.mId && Objects.equals(mName, that.mName) &&
176 result = 31 * result + (mName != null ? mName.hashCode() : 0);
190 dest.writeString(mName);
245 .compare(lhs.mName, rhs.mName, Ordering.<String>natural().nullsFirst())