Home
last modified time | relevance | path

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

/packages/apps/Messaging/src/com/android/messaging/ui/contact/
DContactSectionIndexer.java143 final String sortKey = cursor.getString(ContactUtil.INDEX_SORT_KEY); in buildIndexerFromDisplayNames() local
144 final String section = TextUtils.isEmpty(sortKey) ? BLANK_HEADER_STRING : in buildIndexerFromDisplayNames()
145 sortKey.substring(0, 1).toUpperCase(); in buildIndexerFromDisplayNames()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/display/daydream/
DDreamInfoAction.java57 return sortKey(lhs).compareTo(sortKey(rhs)); in compare()
60 private String sortKey(DreamInfoAction di) { in sortKey() method in DreamInfoAction.DreamInfoActionComparator
/packages/apps/Settings/src/com/android/settings/
DDreamBackend.java300 return sortKey(lhs).compareTo(sortKey(rhs)); in compare()
303 private String sortKey(DreamInfo di) { in sortKey() method in DreamBackend.DreamInfoComparator
DZonePicker.java88 final String sortKey = (sortedByName ? ZoneGetter.KEY_DISPLAYNAME : ZoneGetter.KEY_OFFSET); in constructTimezoneAdapter() local
89 final MyComparator comparator = new MyComparator(sortKey); in constructTimezoneAdapter()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsDatabaseHelper.java3193 String sortKey = null; in upgradeNameToVersion205() local
3197 sortKey = sortKeyAlternative = phoneticName; in upgradeNameToVersion205()
3200 sortKey = sortKeyAlternative = displayName; in upgradeNameToVersion205()
3203 if (sortKey == null) { in upgradeNameToVersion205()
3204 sortKey = displayName; in upgradeNameToVersion205()
3209 displayNameAlternative, name.phoneticNameStyle, phoneticName, sortKey, in upgradeNameToVersion205()
3241 String sortKey = company; in upgradeOrganizationsToVersion205() local
3244 company, phoneticNameStyle, phoneticName, sortKey, sortKey); in upgradeOrganizationsToVersion205()
DContactsProvider2.java6502 String sortKey; in getLocalizedSortOrder() local
6506 sortKey = sortOrder.substring(0, spaceIndex); in getLocalizedSortOrder()
6509 sortKey = sortOrder; in getLocalizedSortOrder()
6511 if (TextUtils.equals(sortKey, Contacts.SORT_KEY_PRIMARY)) { in getLocalizedSortOrder()
6514 } else if (TextUtils.equals(sortKey, Contacts.SORT_KEY_ALTERNATIVE)) { in getLocalizedSortOrder()
6947 String sortKey; in getFastScrollingIndexExtras() local
6956 sortKey = sortOrder.substring(0, spaceIndex); in getFastScrollingIndexExtras()
6959 sortKey = sortOrder; in getFastScrollingIndexExtras()
6962 sortKey = Contacts.SORT_KEY_PRIMARY; in getFastScrollingIndexExtras()
6967 if (TextUtils.equals(sortKey, Contacts.SORT_KEY_PRIMARY)) { in getFastScrollingIndexExtras()
[all …]
/packages/apps/Messaging/src/com/android/messaging/datamodel/
DBugleNotifications.java857 final String sortKey = String.format(Locale.US, "%02d", order); in setWearableGroupOptions() local
858 notifBuilder.setGroup(groupKey).setSortKey(sortKey); in setWearableGroupOptions()