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

  /packages/apps/Contacts/src/com/android/contacts/editor/
PhoneticNameEditorView.java 36 private String mPhoneticName;
46 mPhoneticName = value;
57 return mPhoneticName;
74 mPhoneticName = NameConverter.buildPhoneticName(family, middle, given);
RawContactEditorView.java 67 private PhoneticNameEditorView mPhoneticName;
109 if (mPhoneticName != null) {
110 mPhoneticName.setEnabled(enabled);
134 mPhoneticName = (PhoneticNameEditorView)findViewById(R.id.edit_phonetic_name);
135 mPhoneticName.setDeletable(false);
225 mPhoneticName.setEnabled(isEnabled());
230 mPhoneticName.setVisibility(View.VISIBLE);
252 mPhoneticName.setValues(
267 mPhoneticName.setPadding(0, 0, 0, (int) getResources().getDimension(
378 return mPhoneticName;
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
Contact.java 72 private final String mPhoneticName;
123 mPhoneticName = null;
164 mPhoneticName = phoneticName;
189 mPhoneticName = from.mPhoneticName;
341 return mPhoneticName;
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntry.java 738 private final String mPhoneticName; // We won't have this in "TITLE" property.
749 mPhoneticName = phoneticName;
793 if (mPhoneticName != null) {
794 builder.withValue(Organization.PHONETIC_NAME, mPhoneticName);
805 && TextUtils.isEmpty(mTitle) && TextUtils.isEmpty(mPhoneticName);
859 return mPhoneticName;
    [all...]

Completed in 62 milliseconds