HomeSort by relevance Sort by last modified time
    Searched refs:contactsPreferences (Results 1 - 9 of 9) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/util/
ContactDisplayUtils.java 33 import com.android.contacts.preference.ContactsPreferences;
244 * Returns either namePrimary or nameAlternative based on the {@link ContactsPreferences}.
249 * @param contactsPreferences the ContactsPreferences used to determine the preferred
254 @Nullable ContactsPreferences contactsPreferences) {
255 if (contactsPreferences == null) {
258 if (contactsPreferences.getDisplayOrder() == ContactsPreferences.DISPLAY_ORDER_PRIMARY) {
262 if (contactsPreferences.getDisplayOrder() == ContactsPreferences.DISPLAY_ORDER_ALTERNATIV
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/util/
ContactDisplayUtils.java 31 import com.android.contacts.common.preference.ContactsPreferences;
249 * Returns either namePrimary or nameAlternative based on the {@link ContactsPreferences}.
254 * @param contactsPreferences the ContactsPreferences used to determine the preferred display
261 @Nullable ContactsPreferences contactsPreferences) {
262 if (contactsPreferences == null) {
265 if (contactsPreferences.getDisplayOrder() == ContactsPreferences.DISPLAY_ORDER_PRIMARY) {
269 if (contactsPreferences.getDisplayOrder() == ContactsPreferences.DISPLAY_ORDER_ALTERNATIV
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/
ConferenceParticipantListAdapter.java 36 import com.android.contacts.common.preference.ContactsPreferences;
61 /** ContactsPreferences used to lookup displayName preferences */
62 @Nullable private final ContactsPreferences contactsPreferences;
105 contactsPreferences = ContactsPreferencesFactory.newContactsPreferences(getContext());
118 if (contactsPreferences != null) {
119 contactsPreferences.refreshValue(ContactsPreferences.DISPLAY_ORDER_KEY);
120 contactsPreferences.refreshValue(ContactsPreferences.SORT_ORDER_KEY)
    [all...]
ExternalCallNotifier.java 41 import com.android.contacts.common.preference.ContactsPreferences;
80 private ContactsPreferences contactsPreferences;
86 contactsPreferences = ContactsPreferencesFactory.newContactsPreferences(this.context);
218 info.setContentTitle(getContentTitle(context, contactsPreferences, entry, info.getCall()));
344 * @param contactsPreferences Contacts preferences, used to determine the preferred formatting for
352 @Nullable ContactsPreferences contactsPreferences,
364 contactInfo.namePrimary, contactInfo.nameAlternative, contactsPreferences);
CallCardPresenter.java 45 import com.android.contacts.common.preference.ContactsPreferences;
124 @Nullable private ContactsPreferences contactsPreferences;
160 contactsPreferences = ContactsPreferencesFactory.newContactsPreferences(context);
185 if (contactsPreferences != null) {
186 contactsPreferences.refreshValue(ContactsPreferences.DISPLAY_ORDER_KEY);
    [all...]
StatusBarNotifier.java 65 import com.android.contacts.common.preference.ContactsPreferences;
118 @Nullable private ContactsPreferences contactsPreferences;
133 contactsPreferences = ContactsPreferencesFactory.newContactsPreferences(this.context);
561 contactInfo.namePrimary, contactInfo.nameAlternative, contactsPreferences);
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/list/
PhoneFavoritesTileAdapter.java 40 import com.android.contacts.common.preference.ContactsPreferences;
81 private ContactsPreferences contactsPreferences;
93 if (contactsPreferences.getSortOrder() == ContactsPreferences.SORT_ORDER_PRIMARY
124 contactsPreferences = new ContactsPreferences(this.context);
144 contactsPreferences.refreshValue(ContactsPreferences.DISPLAY_ORDER_KEY);
145 contactsPreferences.refreshValue(ContactsPreferences.SORT_ORDER_KEY)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/interactions/
ContactMultiDeletionInteraction.java 39 import com.android.contacts.preference.ContactsPreferences;
205 final ContactsPreferences contactsPreferences = new ContactsPreferences(mContext);
218 displayNameAlt, contactsPreferences);
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
CallLogAdapter.java 55 import com.android.contacts.common.preference.ContactsPreferences;
515 private ContactsPreferences contactsPreferences;
560 contactsPreferences = new ContactsPreferences(this.activity);
681 contactsPreferences.refreshValue(ContactsPreferences.DISPLAY_ORDER_KEY);
    [all...]

Completed in 186 milliseconds