Searched refs:nameAlternative (Results 1 - 14 of 14) sorted by relevance

/packages/apps/Dialer/java/com/android/contacts/common/list/
H A DContactEntry.java32 public String nameAlternative; field in class:ContactEntry
52 || TextUtils.isEmpty(nameAlternative)) {
55 return nameAlternative;
/packages/apps/Contacts/src/com/android/contacts/util/
H A DContactDisplayUtils.java244 * Returns either namePrimary or nameAlternative based on the {@link ContactsPreferences}.
248 * @param nameAlternative the alternative name.
251 * @return namePrimary or nameAlternative depending on the value of displayOrderPreference.
253 public static String getPreferredDisplayName(String namePrimary, String nameAlternative, argument
256 return namePrimary != null ? namePrimary : nameAlternative;
263 && !TextUtils.isEmpty(nameAlternative)) {
264 return nameAlternative;
271 * Returns either namePrimary or nameAlternative based on the {@link ContactsPreferences}.
275 * @param nameAlternative the alternative name.
278 * @return namePrimary or nameAlternative dependin
280 getPreferredSortName(String namePrimary, String nameAlternative, @Nullable ContactsPreferences contactsPreferences) argument
[all...]
/packages/apps/Dialer/java/com/android/contacts/common/util/
H A DContactDisplayUtils.java249 * Returns either namePrimary or nameAlternative based on the {@link ContactsPreferences}.
253 * @param nameAlternative the alternative name.
256 * @return namePrimary or nameAlternative depending on the value of displayOrderPreference.
260 String nameAlternative,
263 return namePrimary != null ? namePrimary : nameAlternative;
270 && !TextUtils.isEmpty(nameAlternative)) {
271 return nameAlternative;
278 * Returns either namePrimary or nameAlternative based on the {@link ContactsPreferences}.
282 * @param nameAlternative the alternative name.
284 * @return namePrimary or nameAlternative dependin
258 getPreferredDisplayName( String namePrimary, String nameAlternative, @Nullable ContactsPreferences contactsPreferences) argument
286 getPreferredSortName( String namePrimary, String nameAlternative, @Nullable ContactsPreferences contactsPreferences) argument
[all...]
/packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
H A DContactInfo.java38 public String nameAlternative; field in class:ContactInfo
102 if (!TextUtils.equals(nameAlternative, other.nameAlternative)) {
149 + ", nameAlternative='"
150 + nameAlternative
H A DContactInfoHelper.java399 contactInfo.nameAlternative =
/packages/apps/Dialer/java/com/android/dialer/calllogutils/
H A DPhoneCallDetails.java63 public CharSequence nameAlternative; field in class:PhoneCallDetails
181 || TextUtils.isEmpty(nameAlternative)) {
184 return nameAlternative;
/packages/apps/Dialer/java/com/android/dialer/app/list/
H A DPhoneFavoritesTileAdapter.java93 || TextUtils.isEmpty(contactEntry.nameAlternative)) {
96 return contactEntry.nameAlternative;
245 final String nameAlternative = cursor.getString(nameAlternativeColumn);
254 contact.nameAlternative =
255 (!TextUtils.isEmpty(nameAlternative))
256 ? nameAlternative
/packages/apps/Dialer/java/com/android/incallui/
H A DConferenceParticipantListAdapter.java237 contactCache.namePrimary, contactCache.nameAlternative, mContactsPreferences);
405 c1.namePrimary, c1.nameAlternative, mContactsPreferences);
411 c2.namePrimary, c2.nameAlternative, mContactsPreferences);
H A DCallerInfo.java103 public String nameAlternative; field in class:CallerInfo
318 info.nameAlternative =
H A DContactInfoCache.java246 // later determine whether to use the name or nameAlternative when presenting
248 cce.nameAlternative = info.nameAlternative;
692 public String nameAlternative; field in class:ContactInfoCache.ContactCacheEntry
728 + ", nameAlternative='"
729 + MoreStrings.toSafeString(nameAlternative)
H A DExternalCallNotifier.java392 contactInfo.namePrimary, contactInfo.nameAlternative, contactsPreferences);
H A DCallCardPresenter.java976 contactInfo.namePrimary, contactInfo.nameAlternative, mContactsPreferences);
H A DStatusBarNotifier.java581 contactInfo.namePrimary, contactInfo.nameAlternative, mContactsPreferences);
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
H A DCallLogAdapter.java1048 if (!TextUtils.isEmpty(info.name) || !TextUtils.isEmpty(info.nameAlternative)) {
1051 details.nameAlternative = info.nameAlternative;

Completed in 235 milliseconds