/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | ContactsProvider2Test.java | 657 PhoneLookup.DISPLAY_NAME, in testPhoneLookupProjection() 683 PhoneLookup.DISPLAY_NAME, in testPhoneLookupEnterpriseProjection() 807 Directory.DISPLAY_NAME, in testDirectoryProjection() 961 values.put(Contacts.Entity.DISPLAY_NAME, "John Doe"); in assertEntityRows() 978 values.put(Contacts.Entity.DISPLAY_NAME, "John Doe"); in assertEntityRows() 996 values.put(Contacts.Entity.DISPLAY_NAME, "John Doe"); in assertEntityRows() 1101 values.put(Contacts.DISPLAY_NAME, "Meghan Knox"); in testPhonesQuery() 1124 values1.put(Contacts.DISPLAY_NAME, "123456789"); in testPhonesWithMergedContacts() 1284 values.put(Contacts.DISPLAY_NAME, "Hot Tamale"); in testPhonesFilterQueryInter() 1304 values1.put(Contacts.DISPLAY_NAME, "Chilled Guacamole"); in testPhonesFilterQueryInter() [all …]
|
D | SearchIndexManagerTest.java | 56 values.put(StructuredName.DISPLAY_NAME, "Bob I. Parr"); in testSearchIndexForStructuredName() 77 values.put(StructuredName.DISPLAY_NAME, "Bob I. Parr"); in testSearchIndexForStructuredName_phoneticOnly() 101 values.put(StructuredName.DISPLAY_NAME, "\u695A\u8FAD"); // CHUCI in testSearchIndexForChineseName() 117 values.put(StructuredName.DISPLAY_NAME, "\u695A\u8FAD"); // CHUCI in testSearchByChineseName() 137 values.put(StructuredName.DISPLAY_NAME, "\uC774\uC0C1\uC77C"); // Lee Sang Il in testSearchIndexForKoreanName() 152 values.put(StructuredName.DISPLAY_NAME, "\uC774\uC0C1\uC77C"); // Lee Sang Il in testSearchByKoreanName() 178 values.put(StructuredName.DISPLAY_NAME, "\uC120\uC6B0\uC6A9\uB140"); in testSearchByKoreanNameWithTwoCharactersFamilyName() 525 values.put(StructuredName.DISPLAY_NAME, name); in createRawContactWithDisplayName()
|
D | DirectoryTest.java | 57 values.putNull(Directory.DISPLAY_NAME); in testDefaultDirectory() 73 values.putNull(Directory.DISPLAY_NAME); in testInvisibleLocalDirectory() 86 new String[]{Contacts._ID, Contacts.DISPLAY_NAME}, null, null, null); in testForwardingToLocalContacts() 112 new String[]{Contacts._ID, Contacts.DISPLAY_NAME}, null, null, null); in testForwardingToLocalInvisibleContacts() 122 new String[]{Contacts._ID, Contacts.DISPLAY_NAME}, null, null, null); in testForwardingToLocalInvisibleContacts()
|
D | LegacyContactsProviderTest.java | 136 assertStoredValue(personUri, People.DISPLAY_NAME, "John Doe"); in testDefaultDisplayName() 161 values.put(People.DISPLAY_NAME, "Google"); in testPrimaryOrganization() 169 values.put(People.DISPLAY_NAME, "Acme"); in testPrimaryOrganization() 177 values.putNull(People.DISPLAY_NAME); in testPrimaryOrganization() 205 values.put(People.DISPLAY_NAME, "12345"); in testPrimaryPhone() 218 values.put(People.DISPLAY_NAME, "67890"); in testPrimaryPhone() 226 values.putNull(People.DISPLAY_NAME); in testPrimaryPhone() 277 values.put(People.DISPLAY_NAME, "foo@acme.com"); in testPrimaryEmail() 290 values.put(People.DISPLAY_NAME, "bar@acme.com"); in testPrimaryEmail() 298 values.putNull(People.DISPLAY_NAME); in testPrimaryEmail()
|
D | ContactsProvider2TransactionTest.java | 187 b.withValue(StructuredName.DISPLAY_NAME, "Regular Contact"); in addInsertContactOperations() 199 Contacts.DISPLAY_NAME, "Regular Contact", in checkStoredContact() 216 b.withValue(StructuredName.DISPLAY_NAME, "Profile Contact"); in addInsertProfileOperations() 229 Contacts.DISPLAY_NAME, "Profile Contact", in checkStoredProfile()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | DataRowHandlerForStructuredName.java | 53 String name = values.getAsString(StructuredName.DISPLAY_NAME); in insert() 78 if (values.containsKey(StructuredName.DISPLAY_NAME)) { in update() 80 String name = augmented.getAsString(StructuredName.DISPLAY_NAME); in update() 121 final String unstruct = update.getAsString(StructuredName.DISPLAY_NAME); in fixStructuredNameComponents() 145 update.put(StructuredName.DISPLAY_NAME, joined); in fixStructuredNameComponents() 183 String name = builder.getString(StructuredName.DISPLAY_NAME); in appendSearchableData()
|
D | ContactDirectoryManager.java | 84 Directory.DISPLAY_NAME, 93 public static final int DISPLAY_NAME = 2; field in ContactDirectoryManager.DirectoryQuery 439 info.displayName = cursor.getString(DirectoryQuery.DISPLAY_NAME); in queryDirectoriesForAuthority() 509 values.put(Directory.DISPLAY_NAME, info.displayName); in updateDirectories()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/ |
D | ContactTileLoaderFactory.java | 34 public final static int DISPLAY_NAME = 1; field in ContactTileLoaderFactory 54 Contacts.DISPLAY_NAME, // .................................1 71 Contacts.DISPLAY_NAME, // .................................1 83 private static final String STARRED_ORDER = Contacts.DISPLAY_NAME+" COLLATE NOCASE ASC";
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
D | PhoneNumberListAdapter.java | 119 public static final int DISPLAY_NAME = 7; field in PhoneNumberListAdapter.PhoneQuery 282 return ((Cursor) getItem(position)).getString(PhoneQuery.DISPLAY_NAME); in getContactDisplayName() 399 PhoneQuery.LOOKUP_KEY, PhoneQuery.DISPLAY_NAME); in bindView() 451 view.showDisplayName(cursor, PhoneQuery.DISPLAY_NAME, getContactNameDisplayOrder()); in bindName() 479 final String displayName = cursor.getString(PhoneQuery.DISPLAY_NAME); in bindPhoto() 568 .appendQueryParameter(Directory.DISPLAY_NAME, directory.getLabel()) in getContactUri()
|
D | DirectoryListLoader.java | 52 Directory.DISPLAY_NAME, 59 public static final int DISPLAY_NAME = 3; field in DirectoryListLoader.DirectoryQuery 69 Directory.DISPLAY_NAME, 170 String displayName = cursor.getString(DirectoryQuery.DISPLAY_NAME); in loadInBackground()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
D | ContactLoader.java | 120 Contacts.DISPLAY_NAME, 192 public static final int DISPLAY_NAME = 3; field in ContactLoader.ContactQuery 266 Directory.DISPLAY_NAME, 274 public static final int DISPLAY_NAME = 0; field in ContactLoader.DirectoryQuery 376 final String displayName = json.optString(Contacts.DISPLAY_NAME); in loadEncodedContactEntity() 403 final String directoryName = uri.getQueryParameter(Directory.DISPLAY_NAME); in loadEncodedContactEntity() 630 final String displayName = cursor.getString(ContactQuery.DISPLAY_NAME); in loadContactHeaderData() 752 final String displayName = cursor.getString(DirectoryQuery.DISPLAY_NAME); in loadDirectoryMetaData()
|
D | ValuesDelta.java | 512 return getAsString(ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME); in getDisplayName() 517 putNull(ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME); in setDisplayName() 519 put(ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME, name); in setDisplayName() 524 copyStringFrom(name, ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME); in copyStructuredNameFieldsFrom()
|
D | RawContactModifier.java | 615 if (StructuredName.DISPLAY_NAME.equals(field.column)) { in parseStructuredNameExtra() 623 child.put(StructuredName.DISPLAY_NAME, name); in parseStructuredNameExtra() 627 .appendQueryParameter(StructuredName.DISPLAY_NAME, name) in parseStructuredNameExtra() 1059 if (StructuredName.DISPLAY_NAME.equals(editField.column)) { in migrateStructuredName() 1077 final String displayName = values.getAsString(StructuredName.DISPLAY_NAME); in migrateStructuredName() 1084 values.remove(StructuredName.DISPLAY_NAME); in migrateStructuredName() 1089 values.put(StructuredName.DISPLAY_NAME, in migrateStructuredName()
|
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/pbap/ |
D | ContactCursorFilterTest.java | 31 ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME}); in testFilterByRangeWithoutDup() 67 .CONTACT_ID, ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME}); in testFilterByRangeWithDup() 104 .CONTACT_ID, ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME}); in testFilterByOffsetWithoutDup() 129 .CONTACT_ID, ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME}); in testFilterByOffsetWithDup()
|
D | BluetoothPhabVcardManagerTest.java | 38 ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME}); in testGetContactNamesByNumber() 77 ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME}); in testGetPhonebookNameListOrderByIndex() 104 ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME}); in testGetPhonebookNameListOrderByAlphabetical()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | AbstractContactAggregator.java | 1248 + RawContactsColumns.DISPLAY_NAME + "," 1284 int DISPLAY_NAME = 1; field 1411 String displayName = c.getString(RawContactsQuery.DISPLAY_NAME); in computeAggregateData() 1739 + RawContactsColumns.DISPLAY_NAME + "," 1748 int DISPLAY_NAME = 1; field 1775 String displayName = c.getString(DisplayNameQuery.DISPLAY_NAME); in updateDisplayNameForContact() 1838 RawContactsColumns.DISPLAY_NAME, 1845 int DISPLAY_NAME = 1; field 1886 c.getString(LookupKeyQuery.DISPLAY_NAME)); in computeLookupKeyForContact()
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
D | ContactUtil.java | 102 PhoneLookup.DISPLAY_NAME, // 1 119 Contacts.DISPLAY_NAME, // 1 163 StructuredName.DISPLAY_NAME, 396 + StructuredName.DISPLAY_NAME; in lookupStructuredName()
|
/packages/apps/Calendar/src/com/android/calendar/event/ |
D | EventLocationAdapter.java | 101 Contacts.DISPLAY_NAME, 118 .append(Contacts.DISPLAY_NAME) 120 .append(Contacts.DISPLAY_NAME) 369 CONTACTS_PROJECTION, where, whereArgs, Contacts.DISPLAY_NAME + " ASC"); in queryContacts()
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
D | AggregationSuggestionEngine.java | 209 appendValue(nameSb, values, StructuredName.DISPLAY_NAME); in buildAggregationSuggestionUri() 273 Data.DISPLAY_NAME, 288 public static final int DISPLAY_NAME = 4; field in AggregationSuggestionEngine.DataQuery 387 suggestion.name = mDataCursor.getString(DataQuery.DISPLAY_NAME); in getSuggestions()
|
/packages/apps/Messaging/tests/src/com/android/messaging/ui/contact/ |
D | ContactListItemViewTest.java | 83 verifyContent(view, (String) cursor.getAt(Contacts.DISPLAY_NAME, row), in testBindFirstLevel() 94 verifyContent(view, (String) cursor.getAt(Contacts.DISPLAY_NAME, row), in testBindSecondLevel() 118 verifyContent(view, (String) cursor.getAt(Contacts.DISPLAY_NAME, 1), in testBindTwice()
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
D | MediaDocumentsProvider.java | 604 ImageColumns.DISPLAY_NAME, 610 final int DISPLAY_NAME = 1; field 622 row.add(Document.COLUMN_DISPLAY_NAME, cursor.getString(ImageQuery.DISPLAY_NAME)); in includeImage() 663 VideoColumns.DISPLAY_NAME, 669 final int DISPLAY_NAME = 1; field 681 row.add(Document.COLUMN_DISPLAY_NAME, cursor.getString(VideoQuery.DISPLAY_NAME)); in includeVideo()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
D | SmsMmsContacts.java | 55 private static final String[] CONTACT_PROJECTION = {Contacts._ID, Contacts.DISPLAY_NAME}; 60 Arrays.asList(CONTACT_PROJECTION).indexOf(Contacts.DISPLAY_NAME); 173 selection += "AND " + ContactsContract.Contacts.DISPLAY_NAME + " like ?"; in getContactNameFromPhone()
|
/packages/apps/Contacts/src/com/android/contacts/ |
D | SplitAggregateView.java | 58 Data.IS_PRIMARY, StructuredName.DISPLAY_NAME, Nickname.NAME, Email.DATA, 67 int DISPLAY_NAME = 5; field 195 info.name = cursor.getString(SplitQuery.DISPLAY_NAME); in loadStructuredName()
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
D | EmailContent.java | 641 public static final String DISPLAY_NAME = "displayName"; field 767 MessageColumns.DISPLAY_NAME, MessageColumns.TIMESTAMP, 799 MessageColumns.DISPLAY_NAME, MessageColumns.TIMESTAMP, 1002 values.put(MessageColumns.DISPLAY_NAME, mDisplayName); in toContentValues() 1669 public static final String DISPLAY_NAME = "displayName"; field 1738 static final String DISPLAY_NAME = "displayName"; field
|
D | Account.java | 176 AttachmentColumns._ID, AccountColumns.DISPLAY_NAME, 737 values.put(AccountColumns.DISPLAY_NAME, mDisplayName); in toContentValues() 767 json.putOpt(AccountColumns.DISPLAY_NAME, mDisplayName); in toJson() 802 a.mDisplayName = json.optString(AccountColumns.DISPLAY_NAME); in fromJson()
|