/development/samples/browseable/RuntimePermissions/src/com.example.android.system.runtimepermissions/contacts/ |
ContactsFragment.java | 174 ContactsContract.CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE) 175 .withValue(ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME,
|
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/ |
MapTestData.java | 214 ContactsContract.CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE); 215 item.put(ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME,
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/ |
DataItem.java | 33 import android.provider.ContactsContract.CommonDataKinds.StructuredName; 63 } else if (StructuredName.CONTENT_ITEM_TYPE.equals(mimeType)) {
|
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/dataitem/ |
DataItemTests.java | 28 import android.provider.ContactsContract.CommonDataKinds.StructuredName; 393 mValues1.put(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE); 394 mValues2.put(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE); 395 mValues3.put(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE); 397 mValues1.put(StructuredName.DISPLAY_NAME, displayName1); 398 mValues2.put(StructuredName.DISPLAY_NAME, displayName1); 399 mValues3.put(StructuredName.DISPLAY_NAME, displayName2); 402 mGoogleAccountType.getKindForMimetype(StructuredName.CONTENT_ITEM_TYPE);
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
RawContactEditorView.java | 26 import android.provider.ContactsContract.CommonDataKinds.StructuredName; 200 // Make sure we have a StructuredName 201 RawContactModifier.ensureKindExists(state, type, StructuredName.CONTENT_ITEM_TYPE); 259 if (StructuredName.CONTENT_ITEM_TYPE.equals(mimeType)) { 269 // as a part of StructuredName's fake KindSectionView, even though it uses a
|
CompactRawContactsEditorView.java | 52 import android.provider.ContactsContract.CommonDataKinds.StructuredName; 228 StructuredName.CONTENT_ITEM_TYPE, 602 StructuredName.CONTENT_ITEM_TYPE); 655 mPrimaryNameKindSectionData = mKindSectionDataMap.get(StructuredName.CONTENT_ITEM_TYPE) 664 StructuredName.CONTENT_ITEM_TYPE); [all...] |
ContactEditorBaseFragment.java | 69 import android.provider.ContactsContract.CommonDataKinds.StructuredName; [all...] |
/packages/apps/Messaging/tests/src/com/android/messaging/util/ |
ContactUtilTest.java | 80 ContactsContract.CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE) 81 .withValue(ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME,
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
ContactsProvider2Test.java | 47 import android.provider.ContactsContract.CommonDataKinds.StructuredName; [all...] |
BaseContactsProvider2Test.java | 47 import android.provider.ContactsContract.CommonDataKinds.StructuredName; 671 StructuredName.PREFIX, StructuredName.GIVEN_NAME, StructuredName.MIDDLE_NAME, 672 StructuredName.FAMILY_NAME, StructuredName.SUFFIX 676 + StructuredName.CONTENT_ITEM_TYPE + "'", null, null); [all...] |
ContactsActor.java | 584 values.put(Data.MIMETYPE, CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE); 585 values.put(CommonDataKinds.StructuredName.FAMILY_NAME, name);
|
/frameworks/opt/vcard/java/com/android/vcard/ |
VCardEntry.java | 36 import android.provider.ContactsContract.CommonDataKinds.StructuredName; 139 * Not in vCard but for {@link StructuredName#DISPLAY_NAME}. This field 165 builder.withValueBackReference(StructuredName.RAW_CONTACT_ID, backReferenceIndex); 166 builder.withValue(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE); 169 builder.withValue(StructuredName.GIVEN_NAME, mGiven); 172 builder.withValue(StructuredName.FAMILY_NAME, mFamily); 175 builder.withValue(StructuredName.MIDDLE_NAME, mMiddle); 178 builder.withValue(StructuredName.PREFIX, mPrefix); 181 builder.withValue(StructuredName.SUFFIX, mSuffix); 187 builder.withValue(StructuredName.PHONETIC_GIVEN_NAME, mPhoneticGiven) [all...] |
VCardComposer.java | 37 import android.provider.ContactsContract.CommonDataKinds.StructuredName; 602 builder.appendNameProperties(contentValuesListMap.get(StructuredName.CONTENT_ITEM_TYPE))
|
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/ |
ContactManager.java | 34 import android.provider.ContactsContract.CommonDataKinds.StructuredName; 350 if (mimeType.equals(StructuredName.CONTENT_ITEM_TYPE)) { 485 if (mimeType.equals(StructuredName.CONTENT_ITEM_TYPE)) { [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
LegacyApiSupport.java | 44 import android.provider.ContactsContract.CommonDataKinds.StructuredName; 126 + "='" + StructuredName.CONTENT_ITEM_TYPE + "')" 154 + "ifnull(name." + StructuredName.PHONETIC_GIVEN_NAME + ",' ')||' '||" 155 + "ifnull(name." + StructuredName.PHONETIC_MIDDLE_NAME + ",' '))||' '||" 156 + "ifnull(name." + StructuredName.PHONETIC_FAMILY_NAME + ",' ')) "; 561 String peopleColumns = "name." + StructuredName.DISPLAY_NAME [all...] |
DataRowHandler.java | 27 import android.provider.ContactsContract.CommonDataKinds.StructuredName; 94 if (StructuredName.DISPLAY_NAME != Data.DATA1 || Nickname.NAME != Data.DATA1
|
ContactsDatabaseHelper.java | 58 import android.provider.ContactsContract.CommonDataKinds.StructuredName; [all...] |
/development/samples/ContactManager/src/com/example/android/contactmanager/ |
ContactAdder.java | 193 ContactsContract.CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE) 194 .withValue(ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME, name)
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/ |
ExternalAccountType.java | 29 import android.provider.ContactsContract.CommonDataKinds.StructuredName; 136 checkKindExists(StructuredName.CONTENT_ITEM_TYPE);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/ |
AttentionManagementVerifierActivity.java | 32 import android.provider.ContactsContract.CommonDataKinds.StructuredName; [all...] |
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/ |
ContactLoaderTest.java | 23 import android.provider.ContactsContract.CommonDataKinds.StructuredName; 385 0, StructuredName.CONTENT_ITEM_TYPE,
|
/packages/apps/Contacts/src/com/android/contacts/activities/ |
ConfirmAddDetailActivity.java | 44 import android.provider.ContactsContract.CommonDataKinds.StructuredName; 653 entity.getMimeEntries(StructuredName.CONTENT_ITEM_TYPE); 657 accountType, StructuredName.CONTENT_ITEM_TYPE); [all...] |
/packages/apps/Contacts/src/com/android/contacts/ |
ContactSaveService.java | 41 import android.provider.ContactsContract.CommonDataKinds.StructuredName; [all...] |
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/ |
ContactsTest.java | [all...] |
/packages/apps/Settings/src/com/android/settings/ |
Utils.java | 405 final Cursor structuredName = cr.query( 407 new String[] {CommonDataKinds.StructuredName.GIVEN_NAME, 408 CommonDataKinds.StructuredName.FAMILY_NAME}, 411 if (structuredName == null) return null; 414 if (!structuredName.moveToFirst()) { 417 String partialName = structuredName.getString(0); 419 partialName = structuredName.getString(1); 423 structuredName.close(); [all...] |