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/
RawContactEditorView.java 66 private PhoneticNameEditorView mPhoneticName;
106 if (mPhoneticName != null) {
107 mPhoneticName.setEnabled(enabled);
133 mPhoneticName = (PhoneticNameEditorView)findViewById(R.id.edit_phonetic_name);
134 mPhoneticName.setDeletable(false);
213 mPhoneticName.setEnabled(isEnabled());
218 mPhoneticName.setVisibility(View.VISIBLE);
240 mPhoneticName.setValues(
388 return mPhoneticName;
395 if (showByDefault || mPhoneticName.hasData() || mPhoneticNameAdded)
    [all...]
PhoneticNameEditorView.java 36 private String mPhoneticName;
46 mPhoneticName = value;
57 return mPhoneticName;
74 mPhoneticName = PhoneticNameEditorView.buildPhoneticName(family, middle, given);
  /packages/apps/Contacts/src/com/android/contacts/model/
Contact.java 72 private final String mPhoneticName;
120 mPhoneticName = null;
162 mPhoneticName = phoneticName;
187 mPhoneticName = from.mPhoneticName;
328 return mPhoneticName;
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntry.java 737 private final String mPhoneticName; // We won't have this in "TITLE" property.
748 mPhoneticName = phoneticName;
792 if (mPhoneticName != null) {
793 builder.withValue(Organization.PHONETIC_NAME, mPhoneticName);
804 && TextUtils.isEmpty(mTitle) && TextUtils.isEmpty(mPhoneticName);
858 return mPhoneticName;
    [all...]

Completed in 2070 milliseconds