/packages/apps/Exchange/tests/src/com/android/exchange/eas/ |
D | EasSyncContactsTests.java | 128 nameValues.put(StructuredName.MIDDLE_NAME, middleName); in testGenerateFileAsNullEmailValues() 142 nameValues.put(StructuredName.MIDDLE_NAME, middleName); in testGenerateFileAsNullFirstName() 156 nameValues.put(StructuredName.MIDDLE_NAME, middleName); in testGenerateFileAsNullLastName() 185 nameValues.put(StructuredName.MIDDLE_NAME, middleName); in testGenerateFileAsNullSuffix()
|
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/util/ |
D | NameConverterTests.java | 39 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/tests/src/com/android/contacts/common/ |
D | RawContactModifierTests.java | 787 mockNameValues.put(StructuredName.MIDDLE_NAME, "middle"); in testMigrateWithDisplayNameFromGoogleToExchange1() 803 assertEquals("middle", output.getAsString(StructuredName.MIDDLE_NAME)); in testMigrateWithDisplayNameFromGoogleToExchange1() 830 StructuredName.MIDDLE_NAME, StructuredName.FAMILY_NAME, in testMigrateWithDisplayNameFromGoogleToExchange2() 847 assertEquals("middle", outputValues.getAsString(StructuredName.MIDDLE_NAME)); in testMigrateWithDisplayNameFromGoogleToExchange2() 867 .appendQueryParameter(StructuredName.MIDDLE_NAME, "middle") in testMigrateWithStructuredNameFromExchangeToGoogle() 880 mockNameValues.put(StructuredName.MIDDLE_NAME, "middle"); in testMigrateWithStructuredNameFromExchangeToGoogle()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/ |
D | ExchangeAccountType.java | 94 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()
|
D | BaseAccountType.java | 163 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/ |
D | DataRowHandlerForStructuredName.java | 110 StructuredName.PREFIX, StructuredName.GIVEN_NAME, StructuredName.MIDDLE_NAME, 173 || values.containsKey(StructuredName.MIDDLE_NAME) in containsSearchableColumns()
|
D | NameSplitter.java | 156 middleName = values.getAsString(StructuredName.MIDDLE_NAME); in fromValues() 174 putValueIfPresent(values, StructuredName.MIDDLE_NAME, middleName); in toValues()
|
D | ContactsDatabaseHelper.java | 794 StructuredName.MIDDLE_NAME, 808 int MIDDLE_NAME = 6; field 847 public static final int MIDDLE_NAME = 6; // data5 field 3046 name.middleName = cursor.getString(StructName205Query.MIDDLE_NAME); in upgradeStructuredNamesToVersion205() 5432 name.middleName = c.getString(RawContactNameQuery.MIDDLE_NAME); in updateRawContactDisplayName()
|
D | ContactsProvider2.java | 8502 StructuredName.MIDDLE_NAME, in completeName()
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
D | ExchangeSource.java | 79 kind.fieldList.add(new EditField(StructuredName.MIDDLE_NAME, in inflateStructuredName() 92 kind.fieldList.add(new EditField(StructuredName.MIDDLE_NAME, in inflateStructuredName()
|
D | FallbackSource.java | 122 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/ |
D | SearchIndexManagerTest.java | 61 values.put(StructuredName.MIDDLE_NAME, "I."); in testSearchIndexForStructuredName() 82 values.put(StructuredName.MIDDLE_NAME, "I."); in testSearchIndexForStructuredName_phoneticOnly()
|
D | ContactsProvider2Test.java | 3905 values.put(StructuredName.MIDDLE_NAME, "K."); in testContactWithoutPhoneticName() 4109 values.put(StructuredName.MIDDLE_NAME, "P."); in testDisplayNameFromData() 7750 values.put(StructuredName.MIDDLE_NAME, "Q."); in testNameParsingQuery() 7763 .appendQueryParameter(StructuredName.MIDDLE_NAME, "Q.") in testNameConcatenationQuery() 7772 values.put(StructuredName.MIDDLE_NAME, "Q."); in testNameConcatenationQuery()
|
D | BaseContactsProvider2Test.java | 661 StructuredName.PREFIX, StructuredName.GIVEN_NAME, StructuredName.MIDDLE_NAME, in assertStructuredName()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/ |
D | StructuredNameDataItem.java | 60 return getContentValues().getAsString(StructuredName.MIDDLE_NAME); in getMiddleName()
|
/packages/apps/Exchange/src/com/android/exchange/eas/ |
D | EasSyncContacts.java | 587 sendStringData(s, cv, StructuredName.MIDDLE_NAME, Tags.CONTACTS_MIDDLE_NAME); in sendStructuredName() 770 final String middleName = tryGetStringData(nameValues, StructuredName.MIDDLE_NAME);; in generateFileAs()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
D | NameConverter.java | 45 StructuredName.MIDDLE_NAME,
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
D | RawContactModifier.java | 633 StructuredName.MIDDLE_NAME, in parseStructuredNameExtra() 643 child.put(StructuredName.MIDDLE_NAME, cursor.getString(2)); in parseStructuredNameExtra()
|
D | ValuesDelta.java | 527 copyStringFrom(name, ContactsContract.CommonDataKinds.StructuredName.MIDDLE_NAME); in copyStructuredNameFieldsFrom()
|
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
D | ContactsSyncParser.java | 1089 cvCompareString(cv, StructuredName.MIDDLE_NAME, middleName) && 1098 builder.withValue(StructuredName.MIDDLE_NAME, middleName);
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
D | AggregationSuggestionEngine.java | 204 appendValue(nameSb, values, StructuredName.MIDDLE_NAME); in buildAggregationSuggestionUri()
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/ |
D | ContactAggregatorTest.java | 256 values.put(StructuredName.MIDDLE_NAME, "Arizona"); in testAggregationOfInconsistentlyParsedNames()
|