Home
last modified time | relevance | path

Searched refs:mPersonal (Results 1 – 1 of 1) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
DAddress.java57 private String mPersonal; field in Address
111 if (TextUtils.isEmpty(mPersonal) && !TextUtils.isEmpty(mAddress)) { in getSimplifiedName()
114 } else if (!TextUtils.isEmpty(mPersonal)) { in getSimplifiedName()
118 int end = mPersonal.indexOf(' '); in getSimplifiedName()
119 while (end > 0 && mPersonal.charAt(end - 1) == ',') { in getSimplifiedName()
122 mSimplifiedName = (end < 1) ? mPersonal : mPersonal.substring(0, end); in getSimplifiedName()
165 return mPersonal; in getPersonal()
175 mPersonal = decodeAddressPersonal(personal); in setPersonal()
284 if (mPersonal != null && !mPersonal.equals(mAddress)) { in toString()
285 if (mPersonal.matches(".*[\\(\\)<>@,;:\\\\\".\\[\\]].*")) { in toString()
[all …]