Home
last modified time | relevance | path

Searched refs:StructuredName (Results 1 – 13 of 13) sorted by relevance

/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
DVCardExporterTests.java36 import android.provider.ContactsContract.CommonDataKinds.StructuredName;
53 mVerifier.addInputEntry().addContentValues(StructuredName.CONTENT_ITEM_TYPE) in testSimpleV21()
54 .put(StructuredName.FAMILY_NAME, "Ando") in testSimpleV21()
55 .put(StructuredName.GIVEN_NAME, "Roid"); in testSimpleV21()
64 mVerifier.addInputEntry().addContentValues(StructuredName.CONTENT_ITEM_TYPE) in testStructuredNameBasic()
65 .put(StructuredName.FAMILY_NAME, "AppropriateFamilyName") in testStructuredNameBasic()
66 .put(StructuredName.GIVEN_NAME, "AppropriateGivenName") in testStructuredNameBasic()
67 .put(StructuredName.MIDDLE_NAME, "AppropriateMiddleName") in testStructuredNameBasic()
68 .put(StructuredName.PREFIX, "AppropriatePrefix") in testStructuredNameBasic()
69 .put(StructuredName.SUFFIX, "AppropriateSuffix") in testStructuredNameBasic()
[all …]
DVCardImporterTests.java28 import android.provider.ContactsContract.CommonDataKinds.StructuredName;
420 .addExpected(StructuredName.CONTENT_ITEM_TYPE) in testV21SimpleCase1_Type_Generic()
421 .put(StructuredName.FAMILY_NAME, "Ando") in testV21SimpleCase1_Type_Generic()
422 .put(StructuredName.GIVEN_NAME, "Roid") in testV21SimpleCase1_Type_Generic()
423 .put(StructuredName.DISPLAY_NAME, "Roid Ando"); in testV21SimpleCase1_Type_Generic()
429 .addExpected(StructuredName.CONTENT_ITEM_TYPE) in testV21SimpleCase1_Type_Japanese()
430 .put(StructuredName.FAMILY_NAME, "Ando") in testV21SimpleCase1_Type_Japanese()
431 .put(StructuredName.GIVEN_NAME, "Roid") in testV21SimpleCase1_Type_Japanese()
435 .put(StructuredName.DISPLAY_NAME, "Roid Ando"); in testV21SimpleCase1_Type_Japanese()
441 .addExpected(StructuredName.CONTENT_ITEM_TYPE) in testV21SimpleCase2()
[all …]
DVCardJapanizationTests.java22 import android.provider.ContactsContract.CommonDataKinds.StructuredName;
38 entry.addContentValues(StructuredName.CONTENT_ITEM_TYPE) in testNameUtf8Common()
39 .put(StructuredName.FAMILY_NAME, "\u3075\u308B\u3069") in testNameUtf8Common()
40 .put(StructuredName.GIVEN_NAME, "\u3091\u308A\u304B") in testNameUtf8Common()
41 .put(StructuredName.MIDDLE_NAME, "B") in testNameUtf8Common()
42 .put(StructuredName.PREFIX, "Dr.") in testNameUtf8Common()
43 .put(StructuredName.SUFFIX, "Ph.D"); in testNameUtf8Common()
66 entry.addContentValues(StructuredName.CONTENT_ITEM_TYPE) in testNameShiftJis()
67 .put(StructuredName.FAMILY_NAME, "\u3075\u308B\u3069") in testNameShiftJis()
68 .put(StructuredName.GIVEN_NAME, "\u3091\u308A\u304B") in testNameShiftJis()
[all …]
DVCardTestUtilsTests.java18 import android.provider.ContactsContract.CommonDataKinds.StructuredName;
60 .addExpected(StructuredName.CONTENT_ITEM_TYPE) in testShouldFailAtContentValueVerification()
61 .put(StructuredName.GIVEN_NAME, "A;B\\") in testShouldFailAtContentValueVerification()
62 .put(StructuredName.MIDDLE_NAME, "C\\;") in testShouldFailAtContentValueVerification()
63 .put(StructuredName.PREFIX, "D") in testShouldFailAtContentValueVerification()
64 .put(StructuredName.SUFFIX, ":E"); in testShouldFailAtContentValueVerification()
80 verifier.addInputEntry().addContentValues(StructuredName.CONTENT_ITEM_TYPE) in testShouldFailAtLineVerification()
81 .put(StructuredName.FAMILY_NAME, "\\") in testShouldFailAtLineVerification()
82 .put(StructuredName.GIVEN_NAME, ";") in testShouldFailAtLineVerification()
83 .put(StructuredName.MIDDLE_NAME, ",") in testShouldFailAtLineVerification()
[all …]
DVCardBuilderTest.java39 values.put(ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME, "ने"); in testVCardNameFieldFromDisplayName()
/frameworks/opt/vcard/java/com/android/vcard/
DVCardBuilder.java29 import android.provider.ContactsContract.CommonDataKinds.StructuredName;
206 final String familyName = contentValues.getAsString(StructuredName.FAMILY_NAME); in containsNonEmptyName()
207 final String middleName = contentValues.getAsString(StructuredName.MIDDLE_NAME); in containsNonEmptyName()
208 final String givenName = contentValues.getAsString(StructuredName.GIVEN_NAME); in containsNonEmptyName()
209 final String prefix = contentValues.getAsString(StructuredName.PREFIX); in containsNonEmptyName()
210 final String suffix = contentValues.getAsString(StructuredName.SUFFIX); in containsNonEmptyName()
212 contentValues.getAsString(StructuredName.PHONETIC_FAMILY_NAME); in containsNonEmptyName()
214 contentValues.getAsString(StructuredName.PHONETIC_MIDDLE_NAME); in containsNonEmptyName()
216 contentValues.getAsString(StructuredName.PHONETIC_GIVEN_NAME); in containsNonEmptyName()
217 final String displayName = contentValues.getAsString(StructuredName.DISPLAY_NAME); in containsNonEmptyName()
[all …]
DVCardEntry.java36 import android.provider.ContactsContract.CommonDataKinds.StructuredName;
165 builder.withValueBackReference(StructuredName.RAW_CONTACT_ID, backReferenceIndex); in constructInsertOperation()
166 builder.withValue(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE); in constructInsertOperation()
169 builder.withValue(StructuredName.GIVEN_NAME, mGiven); in constructInsertOperation()
172 builder.withValue(StructuredName.FAMILY_NAME, mFamily); in constructInsertOperation()
175 builder.withValue(StructuredName.MIDDLE_NAME, mMiddle); in constructInsertOperation()
178 builder.withValue(StructuredName.PREFIX, mPrefix); in constructInsertOperation()
181 builder.withValue(StructuredName.SUFFIX, mSuffix); in constructInsertOperation()
187 builder.withValue(StructuredName.PHONETIC_GIVEN_NAME, mPhoneticGiven); in constructInsertOperation()
191 builder.withValue(StructuredName.PHONETIC_FAMILY_NAME, mPhoneticFamily); in constructInsertOperation()
[all …]
DVCardComposer.java37 import android.provider.ContactsContract.CommonDataKinds.StructuredName;
602 builder.appendNameProperties(contentValuesListMap.get(StructuredName.CONTENT_ITEM_TYPE)) in buildVCard()
/frameworks/opt/chips/src/com/android/ex/chips/
DRecipientAlternatesAdapter.java482 if (ContactsContract.CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE.equals( in removeUndesiredDestinations()
/frameworks/base/core/java/android/provider/
DContactsContract.java5808 public static final class StructuredName implements DataColumnsWithJoins, ContactCounts { class in ContactsContract.CommonDataKinds
5812 private StructuredName() {} in StructuredName() method in ContactsContract.CommonDataKinds.StructuredName
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt24184 …public static final class ContactsContract.CommonDataKinds.StructuredName implements android.provi…
/frameworks/base/api/
Dcurrent.txt37467 …public static final class ContactsContract.CommonDataKinds.StructuredName implements android.provi…
/frameworks/base/config/
Dhiddenapi-greylist-max-o.txt59761 Landroid/provider/ContactsContract$CommonDataKinds$StructuredName;-><init>()V