HomeSort by relevance Sort by last modified time
    Searched refs:structuredName (Results 1 - 2 of 2) sorted by null

  /packages/apps/Contacts/tests/src/com/android/contacts/util/
NameConverterTests.java 19 import android.provider.ContactsContract.CommonDataKinds.StructuredName;
34 Map<String, String> structuredName = new HashMap<String, String>();
35 structuredName.put(StructuredName.PREFIX, "Mr.");
36 structuredName.put(StructuredName.GIVEN_NAME, "John");
37 structuredName.put(StructuredName.MIDDLE_NAME, "Quincy");
38 structuredName.put(StructuredName.FAMILY_NAME, "Adams")
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/util/
NameConverter.java 25 import android.provider.ContactsContract.CommonDataKinds.StructuredName;
41 StructuredName.PREFIX,
42 StructuredName.GIVEN_NAME,
43 StructuredName.MIDDLE_NAME,
44 StructuredName.FAMILY_NAME,
45 StructuredName.SUFFIX
49 * Converts the given structured name (provided as a map from {@link StructuredName} fields to
56 * @param structuredName The structured name map to convert.
60 Map<String, String> structuredName) {
63 if (structuredName.containsKey(key))
    [all...]

Completed in 25 milliseconds