/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/search/ |
D | ContactResultViewHolder.java | 75 Integer sortMethod) { in bindSearchResult() argument 79 TelecomUtils.isSortByFirstName(sortMethod) ? contact.getDisplayName() in bindSearchResult() 81 TelecomUtils.setContactBitmapAsync(mContext, mContactPicture, contact, sortMethod); in bindSearchResult() 97 Integer sortMethod) { in bindTypeDownResult() argument 105 TelecomUtils.isSortByFirstName(sortMethod) ? contact.getDisplayName() in bindTypeDownResult() 109 TelecomUtils.setContactBitmapAsync(mContext, mContactPicture, contact, sortMethod); in bindTypeDownResult()
|
D | ContactResultsAdapter.java | 79 public void setSortMethod(Integer sortMethod) { in setSortMethod() argument 80 mSortMethod = sortMethod; in setSortMethod()
|
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/common/entity/ |
D | ContactSortingInfo.java | 67 Integer sortMethod; in getSortingInfo() local 72 sortMethod = TelecomUtils.SORT_BY_FIRST_NAME; in getSortingInfo() 75 sortMethod = TelecomUtils.SORT_BY_LAST_NAME; in getSortingInfo() 78 return new Pair<>(comparator, sortMethod); in getSortingInfo()
|
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/favorite/ |
D | FavoriteContactViewHolder.java | 62 public void bind(@NonNull Contact contact, Integer sortMethod) { in bind() argument 64 mTitle.setText(TelecomUtils.isSortByFirstName(sortMethod) ? contact.getDisplayName() in bind() 87 TelecomUtils.setContactBitmapAsync(context, mIcon, contact, sortMethod); in bind()
|
D | FavoriteAdapter.java | 78 public void setSortMethod(Integer sortMethod) { in setSortMethod() argument 79 mSortMethod = sortMethod; in setSortMethod()
|
/packages/apps/Car/libs/car-telephony-common/src/com/android/car/telephony/common/ |
D | TelecomUtils.java | 439 Integer sortMethod) { in setContactBitmapAsync() argument 440 setContactBitmapAsync(context, icon, contact, null, sortMethod); in setContactBitmapAsync() 469 Integer sortMethod) { in setContactBitmapAsync() argument 471 boolean startWithFirstName = isSortByFirstName(sortMethod); in setContactBitmapAsync() 678 public static boolean isSortByFirstName(Integer sortMethod) { in isSortByFirstName() argument 679 return SORT_BY_FIRST_NAME.equals(sortMethod); in isSortByFirstName()
|
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/calllog/ |
D | CallLogViewHolder.java | 81 public void bind(UiCallLog uiCallLog, Integer sortMethod) { in bind() argument 89 sortMethod); in bind() local 91 mTitleView.setText(TelecomUtils.isSortByFirstName(sortMethod) ? uiCallLog.getTitle() in bind()
|
D | CallLogAdapter.java | 92 public void setSortMethod(Integer sortMethod) { in setSortMethod() argument 93 mSortMethod = sortMethod; in setSortMethod()
|
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/contact/ |
D | ContactListViewHolder.java | 77 public void bind(Contact contact, boolean showHeader, String header, Integer sortMethod) { in bind() argument 79 sortMethod); in bind() local 84 mTitleView.setText(TelecomUtils.isSortByFirstName(sortMethod) ? contact.getDisplayName() in bind()
|
D | ContactListViewModel.java | 122 Integer sortMethod = contactSortingInfo.second; in sortContacts() local 126 postValue(new Pair<>(sortMethod, contactList)); in sortContacts()
|