Home
last modified time | relevance | path

Searched refs:StructuredName (Results 1 – 15 of 15) 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/base/docs/html/guide/topics/providers/
Dcontacts-provider.jd245 {@link android.provider.ContactsContract.CommonDataKinds.StructuredName} row. A raw contact
429 <td>{@link android.provider.ContactsContract.CommonDataKinds.StructuredName}</td>
1080 * StructuredName data row. No other data is required.
1110 // Creates the display name for the new raw contact, as a StructuredName data row.
1116 * call, the raw contact ID column of the StructuredName data row is set to the
1122 // Sets the data row's MIME type to StructuredName
1124 ContactsContract.CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE)
1127 .withValue(ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME, name);
1575 Always add a {@link android.provider.ContactsContract.CommonDataKinds.StructuredName} row
1580 {@link android.provider.ContactsContract.CommonDataKinds.StructuredName} row in the
/frameworks/opt/chips/src/com/android/ex/chips/
DRecipientAlternatesAdapter.java471 if (ContactsContract.CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE.equals( in removeUndesiredDestinations()
/frameworks/base/core/java/android/provider/
DContactsContract.java5576 public static final class StructuredName implements DataColumnsWithJoins, ContactCounts { class in ContactsContract.CommonDataKinds
5580 private StructuredName() {} in StructuredName() method in ContactsContract.CommonDataKinds.StructuredName
/frameworks/base/docs/html/sdk/api_diff/21/
DmissingSinces.txt1319 NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredName Field EXTRA_ADDRESS_…
1337 NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredName Field EXTRA_ADDRESS_…
1355 NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredName Field EXTRA_ADDRESS_…
1466 NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredName Field FULL_NAME_STYLE
/frameworks/base/docs/html/
Dsitemap.txt1858 …veloper.android.com/reference/android/provider/ContactsContract.CommonDataKinds.StructuredName.html
/frameworks/base/api/
Dcurrent.txt25430 …public static final class ContactsContract.CommonDataKinds.StructuredName implements android.provi…
Dsystem-current.txt27386 …public static final class ContactsContract.CommonDataKinds.StructuredName implements android.provi…