Home | History | Annotate | Download | only in vcard

Lines Matching refs:StructuredName

40 import android.provider.ContactsContract.CommonDataKinds.StructuredName;
1091 builder.withValueBackReference(StructuredName.RAW_CONTACT_ID, 0);
1092 builder.withValue(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE);
1094 builder.withValue(StructuredName.GIVEN_NAME, mGivenName);
1095 builder.withValue(StructuredName.FAMILY_NAME, mFamilyName);
1096 builder.withValue(StructuredName.MIDDLE_NAME, mMiddleName);
1097 builder.withValue(StructuredName.PREFIX, mPrefix);
1098 builder.withValue(StructuredName.SUFFIX, mSuffix);
1103 builder.withValue(StructuredName.PHONETIC_GIVEN_NAME, mPhoneticGivenName);
1104 builder.withValue(StructuredName.PHONETIC_FAMILY_NAME, mPhoneticFamilyName);
1105 builder.withValue(StructuredName.PHONETIC_MIDDLE_NAME, mPhoneticMiddleName);
1107 builder.withValue(StructuredName.PHONETIC_GIVEN_NAME, mPhoneticFullName);
1110 builder.withValue(StructuredName.DISPLAY_NAME, getDisplayName());