Home
last modified time | relevance | path

Searched refs:fullName (Results 1 – 3 of 3) sorted by relevance

/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
DContactOperations.java132 public ContactOperations addName(String fullName, String firstName, String lastName) { in addName() argument
135 if (!TextUtils.isEmpty(fullName)) { in addName()
136 mValues.put(StructuredName.DISPLAY_NAME, fullName); in addName()
285 String fullName) { in updateName() argument
288 if (TextUtils.isEmpty(fullName)) { in updateName()
296 if (!TextUtils.equals(existingFullName, fullName)) { in updateName()
297 mValues.put(StructuredName.DISPLAY_NAME, fullName); in updateName()
DContactManager.java465 String fullName = null; in getRawContact() local
488 fullName = c.getString(DataQuery.COLUMN_FULL_NAME); in getRawContact()
508 RawContact rawContact = RawContact.create(fullName, firstName, lastName, cellPhone, in getRawContact()
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
DRawContact.java178 public RawContact(String name, String fullName, String firstName, String lastName, in RawContact() argument
183 mFullName = fullName; in RawContact()
239 public static RawContact create(String fullName, String firstName, String lastName, in create() argument
243 return new RawContact(null, fullName, firstName, lastName, cellPhone, officePhone, in create()