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 68 private PhoneticNameEditorView mPhoneticName;
108 if (mPhoneticName != null) {
109 mPhoneticName.setEnabled(enabled);
135 mPhoneticName = (PhoneticNameEditorView)findViewById(R.id.edit_phonetic_name);
136 mPhoneticName.setDeletable(false);
216 mPhoneticName.setEnabled(isEnabled());
221 mPhoneticName.setVisibility(View.VISIBLE);
243 mPhoneticName.setValues(
391 return mPhoneticName;
398 if (showByDefault || mPhoneticName.hasData() || mPhoneticNameAdded)
    [all...]
PhoneticNameEditorView.java 36 private String mPhoneticName;
46 mPhoneticName = value;
57 return mPhoneticName;
77 mPhoneticName = PhoneticNameEditorView.buildPhoneticName(family, middle, given);
  /packages/apps/Contacts/src/com/android/contacts/
ContactLoader.java 133 private final String mPhoneticName;
181 mPhoneticName = null;
223 mPhoneticName = phoneticName;
248 mPhoneticName = from.mPhoneticName;
389 return mPhoneticName;
    [all...]
  /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 170 milliseconds