HomeSort by relevance Sort by last modified time
    Searched defs:phoneticName (Results 1 - 7 of 7) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/model/
EntityModifier.java 449 final String phoneticName = extras.getString(Insert.PHONETIC_NAME);
450 if (ContactsUtils.isGraphic(phoneticName)) {
451 child.put(StructuredName.PHONETIC_GIVEN_NAME, phoneticName);
  /frameworks/base/core/java/com/android/internal/widget/
ContactHeaderWidget.java 399 public void setDisplayName(CharSequence displayName, CharSequence phoneticName) {
401 if (!TextUtils.isEmpty(phoneticName)) {
402 mPhoneticNameView.setText(phoneticName);
549 final String phoneticName = c.getString(ContactQuery.PHONETIC_NAME);
550 this.setDisplayName(displayName, phoneticName);
  /frameworks/base/core/java/android/pim/vcard/
VCardEntry.java 257 public final String phoneticName; // We won't have this in "TITLE" property.
264 final String phoneticName,
270 this.phoneticName = phoneticName;
548 final String phoneticName,
554 departmentName, titleName, phoneticName, isPrimary));
589 final String phoneticName = buildSinglePhoneticNameFromSortAsParam(paramMap);
624 addNewOrganization(type, companyName, departmentName, null, phoneticName, isPrimary);
642 addNewOrganization(type, companyName, departmentName, null, phoneticName, isPrimary);
    [all...]
  /packages/apps/Tag/src/com/android/vcard/
VCardEntry.java 255 public final String phoneticName; // We won't have this in "TITLE" property.
262 final String phoneticName,
268 this.phoneticName = phoneticName;
547 final String phoneticName,
553 departmentName, titleName, phoneticName, isPrimary));
588 final String phoneticName = buildSinglePhoneticNameFromSortAsParam(paramMap);
623 addNewOrganization(type, companyName, departmentName, null, phoneticName, isPrimary);
641 addNewOrganization(type, companyName, departmentName, null, phoneticName, isPrimary);
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyApiSupport.java     [all...]
LegacyContactImporter.java 622 String phoneticName = c.getString(PeopleQuery.PHONETIC_NAME);
623 if (phoneticName != null) {
624 int index = phoneticName.indexOf(' ');
626 splitName.phoneticFamilyName = phoneticName;
628 splitName.phoneticFamilyName = phoneticName.substring(0, index).trim();
629 splitName.phoneticGivenName = phoneticName.substring(index + 1).trim();
    [all...]
ContactsDatabaseHelper.java     [all...]

Completed in 241 milliseconds