Home
last modified time | relevance | path

Searched refs:MIDDLE_NAME (Results 1 – 22 of 22) sorted by relevance

/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/util/
DNameConverterTests.java39 structuredName.put(StructuredName.MIDDLE_NAME, "Quincy"); in testStructuredNameToDisplayName()
50 structuredName.remove(StructuredName.MIDDLE_NAME); in testStructuredNameToDisplayName()
78 checkNameComponent(StructuredName.MIDDLE_NAME, middleName, structuredName); in assertStructuredName()
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
DExchangeAccountType.java94 kind.fieldList.add(new EditField(StructuredName.MIDDLE_NAME, in addDataKindStructuredName()
124 kind.fieldList.add(new EditField(StructuredName.MIDDLE_NAME, in addDataKindDisplayName()
131 kind.fieldList.add(new EditField(StructuredName.MIDDLE_NAME, in addDataKindDisplayName()
DBaseAccountType.java163 kind.fieldList.add(new EditField(StructuredName.MIDDLE_NAME, R.string.name_middle, in addDataKindStructuredName()
198 kind.fieldList.add(new EditField(StructuredName.MIDDLE_NAME, R.string.name_middle, in addDataKindDisplayName()
209 kind.fieldList.add(new EditField(StructuredName.MIDDLE_NAME, R.string.name_middle, in addDataKindDisplayName()
937 ks.fieldList.add(new EditField(StructuredName.MIDDLE_NAME, R.string.name_middle, in parseDataKind()
967 kd.fieldList.add(new EditField(StructuredName.MIDDLE_NAME, R.string.name_middle, in parseDataKind()
978 kd.fieldList.add(new EditField(StructuredName.MIDDLE_NAME, R.string.name_middle, in parseDataKind()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DDataRowHandlerForStructuredName.java110 StructuredName.PREFIX, StructuredName.GIVEN_NAME, StructuredName.MIDDLE_NAME,
173 || values.containsKey(StructuredName.MIDDLE_NAME) in containsSearchableColumns()
DNameSplitter.java156 middleName = values.getAsString(StructuredName.MIDDLE_NAME); in fromValues()
174 putValueIfPresent(values, StructuredName.MIDDLE_NAME, middleName); in toValues()
DContactsDatabaseHelper.java835 StructuredName.MIDDLE_NAME,
849 int MIDDLE_NAME = 6; field
888 public static final int MIDDLE_NAME = 6; // data5 field
3242 name.middleName = cursor.getString(StructName205Query.MIDDLE_NAME); in upgradeStructuredNamesToVersion205()
5844 final String middle = c.getString(RawContactNameQuery.MIDDLE_NAME); in updateRawContactDisplayName()
5876 name.middleName = c.getString(RawContactNameQuery.MIDDLE_NAME); in updateRawContactDisplayName()
DContactsProvider2.java9440 StructuredName.MIDDLE_NAME, in completeName()
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
DPhonebookPullRequest.java60 int middleNameIndex = c.getColumnIndex(StructuredName.MIDDLE_NAME); in fetchContact()
142 .withValue(StructuredName.MIDDLE_NAME , e.name.middle) in addContacts()
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
DStructuredNameDataItem.java60 return getContentValues().getAsString(StructuredName.MIDDLE_NAME); in getMiddleName()
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
DRawContactModifierTests.java845 mockNameValues.put(StructuredName.MIDDLE_NAME, "middle"); in testMigrateWithDisplayNameFromGoogleToExchange1()
861 assertEquals("middle", output.getAsString(StructuredName.MIDDLE_NAME)); in testMigrateWithDisplayNameFromGoogleToExchange1()
888 StructuredName.MIDDLE_NAME, StructuredName.FAMILY_NAME, in testMigrateWithDisplayNameFromGoogleToExchange2()
905 assertEquals("middle", outputValues.getAsString(StructuredName.MIDDLE_NAME)); in testMigrateWithDisplayNameFromGoogleToExchange2()
925 .appendQueryParameter(StructuredName.MIDDLE_NAME, "middle") in testMigrateWithStructuredNameFromExchangeToGoogle()
938 mockNameValues.put(StructuredName.MIDDLE_NAME, "middle"); in testMigrateWithStructuredNameFromExchangeToGoogle()
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
DExchangeSource.java79 kind.fieldList.add(new EditField(StructuredName.MIDDLE_NAME, in inflateStructuredName()
92 kind.fieldList.add(new EditField(StructuredName.MIDDLE_NAME, in inflateStructuredName()
DFallbackSource.java122 kind.fieldList.add(new EditField(StructuredName.MIDDLE_NAME, R.string.name_middle, in inflateStructuredName()
137 kind.fieldList.add(new EditField(StructuredName.MIDDLE_NAME, R.string.name_middle, in inflateStructuredName()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DSearchIndexManagerTest.java61 values.put(StructuredName.MIDDLE_NAME, "I."); in testSearchIndexForStructuredName()
82 values.put(StructuredName.MIDDLE_NAME, "I."); in testSearchIndexForStructuredName_phoneticOnly()
DBaseContactsProvider2Test.java671 StructuredName.PREFIX, StructuredName.GIVEN_NAME, StructuredName.MIDDLE_NAME, in assertStructuredName()
DContactsProvider2Test.java4643 values.put(StructuredName.MIDDLE_NAME, "K."); in testContactWithoutPhoneticName()
4847 values.put(StructuredName.MIDDLE_NAME, "P."); in testDisplayNameFromData()
8604 values.put(StructuredName.MIDDLE_NAME, "Q."); in testNameParsingQuery()
8617 .appendQueryParameter(StructuredName.MIDDLE_NAME, "Q.") in testNameConcatenationQuery()
8626 values.put(StructuredName.MIDDLE_NAME, "Q."); in testNameConcatenationQuery()
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/
DNameConverter.java45 StructuredName.MIDDLE_NAME,
/packages/apps/Messaging/src/com/android/messaging/util/
DContactUtil.java167 StructuredName.MIDDLE_NAME,
/packages/apps/Contacts/src/com/android/contacts/editor/
DAggregationSuggestionEngine.java215 appendValue(nameSb, values, StructuredName.MIDDLE_NAME); in buildAggregationSuggestionUri()
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
DValuesDelta.java551 copyStringFrom(name, ContactsContract.CommonDataKinds.StructuredName.MIDDLE_NAME); in copyStructuredNameFieldsFrom()
DRawContactModifier.java623 StructuredName.MIDDLE_NAME, in parseStructuredNameExtra()
633 child.put(StructuredName.MIDDLE_NAME, cursor.getString(2)); in parseStructuredNameExtra()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
DContactAggregatorTest.java259 values.put(StructuredName.MIDDLE_NAME, "Arizona"); in testAggregationOfInconsistentlyParsedNames()
DContactAggregator2Test.java259 values.put(StructuredName.MIDDLE_NAME, "Arizona"); in testAggregationOfInconsistentlyParsedNames()