Searched refs:DISPLAY_NAME (Results 1 - 25 of 164) sorted by relevance

1234567

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DContactsDictionaryConstants.java29 public static final String[] PROJECTION = { BaseColumns._ID, Contacts.DISPLAY_NAME,
/packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/anomaly/
H A DAnomalyPreferenceTest.java37 private static final String DISPLAY_NAME = "app"; field in class:AnomalyPreferenceTest
53 .setDisplayName(DISPLAY_NAME)
62 assertThat(mAnomalyPreference.getTitle()).isEqualTo(DISPLAY_NAME);
H A DAnomalyTest.java37 private static String DISPLAY_NAME = "settings"; field in class:AnomalyTest
50 .setDisplayName(DISPLAY_NAME)
64 assertThat(mAnomaly.displayName).isEqualTo(DISPLAY_NAME);
H A DAnomalyDialogFragmentTest.java54 private static final String DISPLAY_NAME = "app"; field in class:AnomalyDialogFragmentTest
79 .setDisplayName(DISPLAY_NAME)
85 .setDisplayName(DISPLAY_NAME)
91 .setDisplayName(DISPLAY_NAME)
98 .setDisplayName(DISPLAY_NAME)
/packages/apps/Contacts/src/com/android/contacts/
H A DContactTileLoaderFactory.java34 public final static int DISPLAY_NAME = 1; field in class:ContactTileLoaderFactory
55 Contacts.DISPLAY_NAME, // .................................1
85 private static final String STARRED_ORDER = Contacts.DISPLAY_NAME+" COLLATE NOCASE ASC";
/packages/apps/Dialer/java/com/android/dialer/searchfragment/directories/
H A DDirectoriesCursorLoader.java44 ContactsContract.Directory.DISPLAY_NAME,
50 private static final int DISPLAY_NAME = 1; field in class:DirectoriesCursorLoader
85 cursor.getString(DISPLAY_NAME),
/packages/apps/Contacts/src/com/android/contacts/model/dataitem/
H A DEmailDataItem.java38 return getContentValues().getAsString(Email.DISPLAY_NAME);
H A DStructuredNameDataItem.java40 return getContentValues().getAsString(StructuredName.DISPLAY_NAME);
44 getContentValues().put(StructuredName.DISPLAY_NAME, name);
/packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/
H A DEmailDataItem.java37 return getContentValues().getAsString(Email.DISPLAY_NAME);
H A DStructuredNameDataItem.java39 return getContentValues().getAsString(StructuredName.DISPLAY_NAME);
43 getContentValues().put(StructuredName.DISPLAY_NAME, name);
/packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
H A DPhoneQuery.java60 PhoneLookup.DISPLAY_NAME,
76 PhoneLookup.DISPLAY_NAME,
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DDirectoryTest.java63 values.putNull(Directory.DISPLAY_NAME);
79 values.putNull(Directory.DISPLAY_NAME);
92 new String[]{Contacts._ID, Contacts.DISPLAY_NAME}, null, null, null);
118 new String[]{Contacts._ID, Contacts.DISPLAY_NAME}, null, null, null);
128 new String[]{Contacts._ID, Contacts.DISPLAY_NAME}, null, null, null);
/packages/apps/Contacts/src/com/android/contacts/list/
H A DDirectoryListLoader.java52 Directory.DISPLAY_NAME,
59 public static final int DISPLAY_NAME = 3; field in class:DirectoryListLoader.DirectoryQuery
77 Directory.DISPLAY_NAME,
179 String displayName = cursor.getString(DirectoryQuery.DISPLAY_NAME);
H A DLegacyContactListAdapter.java35 People.DISPLAY_NAME, // 1
58 loader.setSortOrder(People.DISPLAY_NAME);
H A DLegacyPhoneNumberListAdapter.java40 People.DISPLAY_NAME, // 4
62 loader.setSortOrder(Phones.DISPLAY_NAME);
H A DLegacyPostalAddressListAdapter.java40 People.DISPLAY_NAME, // 4
62 loader.setSortOrder(People.DISPLAY_NAME);
H A DMultiSelectEmailAddressesListAdapter.java69 public static final int DISPLAY_NAME = 7; field in class:MultiSelectEmailAddressesListAdapter.EmailQuery
123 return ((Cursor) getItem(position)).getString(EmailQuery.DISPLAY_NAME);
163 EmailQuery.DISPLAY_NAME);
189 view.showDisplayName(cursor, EmailQuery.DISPLAY_NAME, getContactNameDisplayOrder());
H A DMultiSelectPhoneNumbersListAdapter.java69 public static final int DISPLAY_NAME = 7; field in class:MultiSelectPhoneNumbersListAdapter.PhoneQuery
123 return ((Cursor) getItem(position)).getString(PhoneQuery.DISPLAY_NAME);
163 PhoneQuery.DISPLAY_NAME);
189 view.showDisplayName(cursor, PhoneQuery.DISPLAY_NAME, getContactNameDisplayOrder());
/packages/apps/Dialer/java/com/android/contacts/common/list/
H A DDirectoryListLoader.java43 Directory._ID, DIRECTORY_TYPE, Directory.DISPLAY_NAME, Directory.PHOTO_SUPPORT,
155 String displayName = cursor.getString(DirectoryQuery.DISPLAY_NAME);
200 Directory.DISPLAY_NAME,
207 public static final int DISPLAY_NAME = 3; field in class:DirectoryListLoader.DirectoryQuery
/packages/apps/Messaging/tests/src/com/android/messaging/ui/contact/
H A DContactListItemViewTest.java83 verifyContent(view, (String) cursor.getAt(Contacts.DISPLAY_NAME, row),
94 verifyContent(view, (String) cursor.getAt(Contacts.DISPLAY_NAME, row),
118 verifyContent(view, (String) cursor.getAt(Contacts.DISPLAY_NAME, 1),
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDataRowHandlerForStructuredName.java53 String name = values.getAsString(StructuredName.DISPLAY_NAME);
78 if (values.containsKey(StructuredName.DISPLAY_NAME)) {
80 String name = augmented.getAsString(StructuredName.DISPLAY_NAME);
121 final String unstruct = update.getAsString(StructuredName.DISPLAY_NAME);
145 update.put(StructuredName.DISPLAY_NAME, joined);
183 String name = builder.getString(StructuredName.DISPLAY_NAME);
/packages/apps/Dialer/java/com/android/dialer/app/list/
H A DSmartDialNumberListAdapter.java76 if (nameMatcher.matches(context, cursor.getString(PhoneQuery.DISPLAY_NAME))) {
83 cursor.getString(PhoneQuery.DISPLAY_NAME)
/packages/apps/EmergencyInfo/tests/common/src/com/android/emergency/
H A DContactTestUtils.java42 cursor.getColumnIndex(ContactsContract.PhoneLookup.DISPLAY_NAME));
80 values.put(StructuredName.DISPLAY_NAME, name);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/
H A DDumpFileProvider.java87 * Used to provide {@link OpenableColumns#DISPLAY_NAME} and {@link OpenableColumns#SIZE}
97 : new String[] {OpenableColumns.DISPLAY_NAME, OpenableColumns.SIZE};
106 if (OpenableColumns.DISPLAY_NAME.equals(column)) {
/packages/apps/Dialer/java/com/android/dialer/searchfragment/common/
H A DProjections.java29 public static final int DISPLAY_NAME = 4; field in class:Projections

Completed in 375 milliseconds

1234567