HomeSort by relevance Sort by last modified time
    Searched refs:rawContacts (Results 1 - 7 of 7) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionEngine.java 37 import android.provider.ContactsContract.RawContacts;
79 public List<RawContact> rawContacts;
83 return "ID: " + contactId + " rawContacts: " + rawContacts + " name: " + name
280 RawContacts.ACCOUNT_TYPE,
281 RawContacts.ACCOUNT_NAME,
282 RawContacts.DATA_SET
386 suggestion.rawContacts = Lists.newArrayList();
398 suggestion.rawContacts.add(rawContact);
434 if (suggestion.rawContacts != null)
    [all...]
AggregationSuggestionView.java 83 mRawContacts = suggestion.rawContacts;
ContactEditorFragment.java 49 import android.provider.ContactsContract.RawContacts;
127 private static final String KEY_RAW_CONTACTS = "rawContacts";
532 ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId),
562 ImmutableList<RawContact> rawContacts) {
566 mState.addAll(rawContacts.iterator());
579 if (state.getValues().getAsString(RawContacts.ACCOUNT_TYPE) == null) {
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
Contact.java 472 /* package */ void setRawContacts(ImmutableList<RawContact> rawContacts) {
473 mRawContacts = rawContacts;
ContactLoader.java 37 import android.provider.ContactsContract.RawContacts;
72 * Loads a single Contact and all it constituent RawContacts.
132 RawContacts.ACCOUNT_NAME,
133 RawContacts.ACCOUNT_TYPE,
134 RawContacts.DATA_SET,
135 RawContacts.ACCOUNT_TYPE_AND_DATA_SET,
136 RawContacts.DIRTY,
137 RawContacts.VERSION,
138 RawContacts.SOURCE_ID,
139 RawContacts.SYNC1
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 41 import android.provider.ContactsContract.RawContacts;
109 * @param rawContacts The list of contacts to update
115 List<RawContact> rawContacts, long groupId, long lastSyncMarker) {
123 for (final RawContact rawContact : rawContacts) {
137 // row for this contact so that the RawContacts.SOURCE_ID value
235 * @param rawContacts The list of users we want to update
237 public static void updateStatusMessages(Context context, List<RawContact> rawContacts) {
240 for (RawContact rawContact : rawContacts) {
254 * @param rawContacts The list of users we want to update
256 public static void addStreamItems(Context context, List<RawContact> rawContacts,
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_DataTest.java 36 import android.provider.ContactsContract.RawContacts;
69 .with(RawContacts.ACCOUNT_TYPE, "test_type")
70 .with(RawContacts.ACCOUNT_NAME, "test_name")
71 .with(RawContacts.SOURCE_ID, "source_id")
90 .with(RawContacts.ACCOUNT_TYPE, "test_type")
91 .with(RawContacts.ACCOUNT_NAME, "test_name")
107 .with(RawContacts.ACCOUNT_TYPE, "test_account")
108 .with(RawContacts.ACCOUNT_NAME, "test_name")
262 .with(RawContacts.ACCOUNT_TYPE, "test_account")
263 .with(RawContacts.ACCOUNT_NAME, "test_name"
    [all...]

Completed in 1833 milliseconds