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

  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntitySet.java 30 import android.provider.ContactsContract.AggregationExceptions;
112 * any {@link AggregationExceptions} rules needed to groups edits together.
145 builder.withValue(AggregationExceptions.RAW_CONTACT_ID1, rawContactId);
146 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID2, firstBatch);
156 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID1, firstInsertRow);
157 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID2, firstBatch);
180 .newUpdate(AggregationExceptions.CONTENT_URI);
181 builder.withValue(AggregationExceptions.TYPE, AggregationExceptions.TYPE_KEEP_TOGETHER);
186 * Builds {@link AggregationExceptions} to split all constituent raw contacts int
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
EntityDeltaList.java 31 import android.provider.ContactsContract.AggregationExceptions;
127 * any {@link AggregationExceptions} rules needed to groups edits together.
161 builder.withValue(AggregationExceptions.RAW_CONTACT_ID1, joinedRawContactId);
163 builder.withValue(AggregationExceptions.RAW_CONTACT_ID2, rawContactId);
166 AggregationExceptions.RAW_CONTACT_ID2, firstBatch);
181 builder.withValue(AggregationExceptions.RAW_CONTACT_ID1, rawContactId);
182 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID2, firstBatch);
192 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID1,
194 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID2, firstBatch);
230 .newUpdate(AggregationExceptions.CONTENT_URI)
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
ContactAggregatorTest.java 36 import android.provider.ContactsContract.AggregationExceptions;
66 AggregationExceptions.TYPE,
67 AggregationExceptions.RAW_CONTACT_ID1,
68 AggregationExceptions.RAW_CONTACT_ID2
75 setAggregationException(AggregationExceptions.TYPE_KEEP_TOGETHER,
78 String selection = "(" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId1
79 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId2
80 + ") OR (" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId2
81 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId1 + ")";
84 Cursor c = mResolver.query(AggregationExceptions.CONTENT_URI
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactLookupKeyTest.java 23 import android.provider.ContactsContract.AggregationExceptions;
46 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
81 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
83 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId3);
137 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
139 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId3);
147 setAggregationException(AggregationExceptions.TYPE_KEEP_SEPARATE, rawContactId1,
149 setAggregationException(AggregationExceptions.TYPE_KEEP_SEPARATE, rawContactId2,
GroupsTest.java 30 import android.provider.ContactsContract.AggregationExceptions;
86 AggregationExceptions.TYPE_KEEP_TOGETHER, contactCharlie, contactCharlieDupe);
302 values.put(AggregationExceptions.TYPE, AggregationExceptions.TYPE_KEEP_TOGETHER);
303 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
304 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2);
305 mResolver.update(AggregationExceptions.CONTENT_URI, values, null, null);
353 values.put(AggregationExceptions.TYPE, AggregationExceptions.TYPE_KEEP_TOGETHER);
354 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1)
    [all...]
ContactDirectoryManagerTest.java 34 import android.provider.ContactsContract.AggregationExceptions;
548 Uri contentUri = AggregationExceptions.CONTENT_URI.buildUpon().appendQueryParameter(
555 AggregationExceptions.TYPE,
556 AggregationExceptions.RAW_CONTACT_ID1,
557 AggregationExceptions.RAW_CONTACT_ID2,
ContactsActor.java 49 import android.provider.ContactsContract.AggregationExceptions;
501 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
502 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2);
503 values.put(AggregationExceptions.TYPE, type);
504 resolver.update(AggregationExceptions.CONTENT_URI, values, null, null);
ContactsProvider2Test.java 43 import android.provider.ContactsContract.AggregationExceptions;
648 assertProjection(AggregationExceptions.CONTENT_URI, new String[]{
650 AggregationExceptions.TYPE,
651 AggregationExceptions.RAW_CONTACT_ID1,
652 AggregationExceptions.RAW_CONTACT_ID2,
787 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
809 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
    [all...]
BaseContactsProvider2Test.java 39 import android.provider.ContactsContract.AggregationExceptions;
569 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
570 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2);
571 values.put(AggregationExceptions.TYPE, type);
572 assertEquals(1, mResolver.update(AggregationExceptions.CONTENT_URI, values, null, null));
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/
EntityDeltaListTests.java 37 import android.provider.ContactsContract.AggregationExceptions;
50 * create {@link AggregationExceptions} in certain cases.
251 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId);
252 values.put(AggregationExceptions.TYPE, AggregationExceptions.TYPE_KEEP_TOGETHER);
253 return buildOper(AggregationExceptions.CONTENT_URI, TYPE_UPDATE, values);
289 * Count number of {@link AggregationExceptions} updates contained in the
295 if (AggregationExceptions.CONTENT_URI.equals(oper.getUri())
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java 51 import android.provider.ContactsContract.AggregationExceptions;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java 47 import android.provider.ContactsContract.AggregationExceptions;
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java 50 import android.provider.ContactsContract.AggregationExceptions;
    [all...]
ContactsProvider2.java 114 import android.provider.ContactsContract.AggregationExceptions;
    [all...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java 97 * {@link AggregationExceptions}, which is used for manual aggregation and
    [all...]
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 471 milliseconds