Searched defs:phoneticName (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/editor/
H A DEditorIntents.java61 /* displayName =*/ null, /* phoneticName =*/ null, /* updatedPhotos =*/ null);
69 String displayName, String phoneticName, Bundle updatedPhotos) {
71 if (rawContactDeltaList != null || displayName != null || phoneticName != null) {
72 putRawContactDeltaValues(intent, rawContactDeltaList, displayName, phoneticName);
115 String displayName, String phoneticName, Bundle updatedPhotos) {
119 putRawContactDeltaValues(intent, rawContactDeltaList, displayName, phoneticName);
158 RawContactDeltaList rawContactDeltaList, String displayName, String phoneticName) {
171 if (!TextUtils.isEmpty(phoneticName)) {
172 intent.putExtra(ContactsContract.Intents.Insert.PHONETIC_NAME, phoneticName);
68 createCompactInsertContactIntent(RawContactDeltaList rawContactDeltaList, String displayName, String phoneticName, Bundle updatedPhotos) argument
114 createInsertContactIntent(RawContactDeltaList rawContactDeltaList, String displayName, String phoneticName, Bundle updatedPhotos) argument
157 putRawContactDeltaValues(Intent intent, RawContactDeltaList rawContactDeltaList, String displayName, String phoneticName) argument
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/
H A DNameConverter.java178 * If this method cannot parse given phoneticName, null values will be stored.
180 * @param phoneticName Phonetic name to be parsed
185 public static StructuredNameDataItem parsePhoneticName(String phoneticName, argument
191 if (!TextUtils.isEmpty(phoneticName)) {
192 String[] strings = phoneticName.split(" ", 3);
/packages/experimental/LoaderApp/src/com/android/loaderapp/
H A DContactHeaderWidget.java394 public void setDisplayName(CharSequence displayName, CharSequence phoneticName) { argument
396 if (!TextUtils.isEmpty(phoneticName)) {
397 mPhoneticNameView.setText(phoneticName);
641 final String phoneticName = c.getString(ContactQuery.PHONETIC_NAME);
642 this.setDisplayName(displayName, phoneticName);
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DContact.java145 String photoUri, String displayName, String altDisplayName, String phoneticName,
164 mPhoneticName = phoneticName;
143 Contact(Uri requestedUri, Uri uri, Uri lookupUri, long directoryId, String lookupKey, long id, long nameRawContactId, int displayNameSource, long photoId, String photoUri, String displayName, String altDisplayName, String phoneticName, boolean starred, Integer presence, boolean sendToVoicemail, String customRingtone, boolean isUserProfile) argument
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsDatabaseHelper.java3192 String phoneticName = splitter.joinPhoneticName(name);
3196 if (phoneticName != null) {
3197 sortKey = sortKeyAlternative = phoneticName;
3209 displayNameAlternative, name.phoneticNameStyle, phoneticName, sortKey,
3233 String phoneticName = cursor.getString(Organization205Query.PHONETIC_NAME);
3235 int phoneticNameStyle = splitter.guessPhoneticNameStyle(phoneticName);
3244 company, phoneticNameStyle, phoneticName, sortKey, sortKey);
3253 String phoneticName, String sortKeyPrimary, String sortKeyAlternative) {
3256 bindString(rawContactUpdate, 3, phoneticName);
3251 updateRawContact205(SQLiteStatement rawContactUpdate, long rawContactId, String displayName, String displayNameAlternative, int phoneticNameStyle, String phoneticName, String sortKeyPrimary, String sortKeyAlternative) argument

Completed in 138 milliseconds