Searched refs:firstName (Results 1 – 4 of 4) sorted by relevance
/packages/apps/Exchange/exchange2/src/com/android/exchange/provider/ |
D | ExchangeDirectoryProvider.java | 169 String firstName, String lastName) { in addNameRow() argument 173 r.put(StructuredName.GIVEN_NAME, firstName); in addNameRow() 374 String firstName = galDataRow.get(GalData.FIRST_NAME); in buildGalResultCursor() local 379 if (firstName != null && lastName != null) { in buildGalResultCursor() 380 displayName = firstName + " " + lastName; in buildGalResultCursor() 381 } else if (firstName != null) { in buildGalResultCursor() 382 displayName = firstName; in buildGalResultCursor() 395 if (firstName != null && lastName != null) { in buildGalResultCursor() 396 row[alternateDisplayNameIndex] = lastName + " " + firstName; in buildGalResultCursor()
|
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/ |
D | ContactsSyncAdapter.java | 431 String firstName = null; in addData() local 459 firstName = getValue(); in addData() 649 if (firstName != null || lastName != null) { in addData() 650 if (firstName == null) { in addData() 653 name = firstName; in addData() 655 name = firstName + ' ' + lastName; in addData() 661 ops.addName(entity, prefix, firstName, lastName, middleName, suffix, name, in addData()
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | BaseContactsProvider2Test.java | 175 protected long createRawContactWithName(String firstName, String lastName) { in createRawContactWithName() argument 176 return createRawContactWithName(firstName, lastName, null); in createRawContactWithName() 179 protected long createRawContactWithName(String firstName, String lastName, Account account) { in createRawContactWithName() argument 181 insertStructuredName(rawContactId, firstName, lastName); in createRawContactWithName()
|
D | ContactsProvider2Test.java | 7111 private long createContact(ContentValues values, String firstName, String givenName, in createContact() argument 7114 return createContact(values, firstName, givenName, phoneNumber, email, presenceStatus, in createContact() 7118 private long createContact(ContentValues values, String firstName, String givenName, in createContact() argument 7121 return queryContactId(createRawContact(values, firstName, givenName, phoneNumber, email, in createContact() 7125 private long createRawContact(ContentValues values, String firstName, String givenName, in createRawContact() argument 7130 insertStructuredName(rawContactId, firstName, givenName); in createRawContact() 7134 private long createRawContact(ContentValues values, String firstName, String givenName, in createRawContact() argument 7139 insertStructuredName(rawContactId, firstName, givenName); in createRawContact()
|