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

1 2

  /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/ContactsCommon/src/com/android/contacts/common/model/
RawContactDeltaList.java 28 import android.provider.ContactsContract.AggregationExceptions;
128 * any {@link AggregationExceptions} rules needed to groups edits together.
162 builder.withValue(AggregationExceptions.RAW_CONTACT_ID1, joinedRawContactId);
164 builder.withValue(AggregationExceptions.RAW_CONTACT_ID2, rawContactId);
167 AggregationExceptions.RAW_CONTACT_ID2, firstBatch);
182 builder.withValue(AggregationExceptions.RAW_CONTACT_ID1, rawContactId);
183 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID2, firstBatch);
193 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID1,
195 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID2, firstBatch);
250 builder.withValue(AggregationExceptions.RAW_CONTACT_ID1, joinedRawContactId)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactUtil.java 25 import android.provider.ContactsContract.AggregationExceptions;
120 * {@link AggregationExceptions#TYPE_AUTOMATIC},
121 * {@link AggregationExceptions#TYPE_KEEP_SEPARATE},
122 * {@link AggregationExceptions#TYPE_KEEP_TOGETHER}
129 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
130 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2);
131 values.put(AggregationExceptions.TYPE, type);
134 Assert.assertEquals(1, resolver.update(AggregationExceptions.CONTENT_URI, values, null,
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactLookupKeyTest.java 21 import android.provider.ContactsContract.AggregationExceptions;
47 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
82 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
84 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId3);
138 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
140 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId3);
148 setAggregationException(AggregationExceptions.TYPE_KEEP_SEPARATE, rawContactId1,
150 setAggregationException(AggregationExceptions.TYPE_KEEP_SEPARATE, rawContactId2,
GroupsTest.java 28 import android.provider.ContactsContract.AggregationExceptions;
87 AggregationExceptions.TYPE_KEEP_TOGETHER, contactCharlie, contactCharlieDupe);
303 values.put(AggregationExceptions.TYPE, AggregationExceptions.TYPE_KEEP_TOGETHER);
304 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
305 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2);
306 mResolver.update(AggregationExceptions.CONTENT_URI, values, null, null);
354 values.put(AggregationExceptions.TYPE, AggregationExceptions.TYPE_KEEP_TOGETHER);
355 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1)
    [all...]
ContactDirectoryManagerTest.java 31 import android.provider.ContactsContract.AggregationExceptions;
566 Uri contentUri = AggregationExceptions.CONTENT_URI.buildUpon().appendQueryParameter(
573 AggregationExceptions.TYPE,
574 AggregationExceptions.RAW_CONTACT_ID1,
575 AggregationExceptions.RAW_CONTACT_ID2,
ContactsActor.java 54 import android.provider.ContactsContract.AggregationExceptions;
704 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
705 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2);
706 values.put(AggregationExceptions.TYPE, type);
707 resolver.update(AggregationExceptions.CONTENT_URI, values, null, null);
ContactsDatabaseHelperUpgradeTest.java 22 import android.provider.ContactsContract.AggregationExceptions;
349 new TableColumn(AggregationExceptions.TYPE, INTEGER, true, null),
350 new TableColumn(AggregationExceptions.RAW_CONTACT_ID1, INTEGER, false, null),
351 new TableColumn(AggregationExceptions.RAW_CONTACT_ID2, INTEGER, false, null),
ContactsProvider2Test.java 37 import android.provider.ContactsContract.AggregationExceptions;
    [all...]
BaseContactsProvider2Test.java 35 import android.provider.ContactsContract.AggregationExceptions;
540 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
541 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2);
542 values.put(AggregationExceptions.TYPE, type);
543 assertEquals(1, mResolver.update(AggregationExceptions.CONTENT_URI, values, null, null));
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
ContactAggregator2Test.java 27 import android.provider.ContactsContract.AggregationExceptions;
66 AggregationExceptions.TYPE,
67 AggregationExceptions.RAW_CONTACT_ID1,
68 AggregationExceptions.RAW_CONTACT_ID2
82 setAggregationException(AggregationExceptions.TYPE_KEEP_TOGETHER,
85 String selection = "(" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId1
86 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId2
87 + ") OR (" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId2
88 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId1 + ")";
91 Cursor c = mResolver.query(AggregationExceptions.CONTENT_URI
    [all...]
ContactAggregatorTest.java 27 import android.provider.ContactsContract.AggregationExceptions;
66 AggregationExceptions.TYPE,
67 AggregationExceptions.RAW_CONTACT_ID1,
68 AggregationExceptions.RAW_CONTACT_ID2
82 setAggregationException(AggregationExceptions.TYPE_KEEP_TOGETHER,
85 String selection = "(" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId1
86 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId2
87 + ") OR (" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId2
88 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId1 + ")";
91 Cursor c = mResolver.query(AggregationExceptions.CONTENT_URI
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_IsSuperPrimaryName.java 25 import android.provider.ContactsContract.AggregationExceptions;
172 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
173 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2);
174 values.put(AggregationExceptions.TYPE, AggregationExceptions.TYPE_KEEP_TOGETHER);
175 mResolver.update(AggregationExceptions.CONTENT_URI, values, null, null);
ContactsContract_StructuredPhoneticName.java 24 import android.provider.ContactsContract.AggregationExceptions;
105 ContactUtil.setAggregationException(mResolver, AggregationExceptions.TYPE_KEEP_TOGETHER,
142 ContactUtil.setAggregationException(mResolver, AggregationExceptions.TYPE_KEEP_TOGETHER,
ContactsContract_PinnedPositionsTest.java 29 import android.provider.ContactsContract.AggregationExceptions;
159 ContactUtil.setAggregationException(mResolver, AggregationExceptions.TYPE_KEEP_TOGETHER,
184 ContactUtil.setAggregationException(mResolver, AggregationExceptions.TYPE_KEEP_TOGETHER,
203 ContactUtil.setAggregationException(mResolver, AggregationExceptions.TYPE_KEEP_SEPARATE,
240 ContactUtil.setAggregationException(mResolver, AggregationExceptions.TYPE_KEEP_TOGETHER,
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator2.java 24 import android.provider.ContactsContract.AggregationExceptions;
291 final String idPairSelection = "SELECT " + AggregationExceptions.RAW_CONTACT_ID1 + ", " +
292 AggregationExceptions.RAW_CONTACT_ID2;
295 " WHERE " + AggregationExceptions.RAW_CONTACT_ID1 + " IN (" +
297 " AND " + AggregationExceptions.RAW_CONTACT_ID2 + " IN (" + rawContactIdSet2 + ")" +
298 " AND " + AggregationExceptions.TYPE + "=" + aggregationType;
433 AggregationExceptions.TYPE_KEEP_SEPARATE, /* countOnly =*/true))) {
515 AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId
516 + " OR " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId,
540 if (type == AggregationExceptions.TYPE_KEEP_TOGETHER)
    [all...]
ContactAggregator.java 22 import android.provider.ContactsContract.AggregationExceptions;
530 AggregationExceptions.TYPE,
531 AggregationExceptions.RAW_CONTACT_ID1,
564 AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId
565 + " OR " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId,
585 if (type == AggregationExceptions.TYPE_KEEP_TOGETHER) {
    [all...]
AbstractContactAggregator.java 56 import android.provider.ContactsContract.AggregationExceptions;
    [all...]
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
RawContactDeltaListTests.java 24 import android.provider.ContactsContract.AggregationExceptions;
50 * create {@link AggregationExceptions} in certain cases.
258 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId);
259 values.put(AggregationExceptions.TYPE, AggregationExceptions.TYPE_KEEP_TOGETHER);
260 return buildCPOWrapper(AggregationExceptions.CONTENT_URI, TYPE_UPDATE, values);
304 * Count number of {@link AggregationExceptions} updates contained in the
311 if (AggregationExceptions.CONTENT_URI.equals(oper.getUri())
  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java 39 import android.provider.ContactsContract.AggregationExceptions;
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java 73 import android.provider.ContactsContract.AggregationExceptions;
    [all...]
ContactsDatabaseHelper.java 50 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...]
  /frameworks/base/
compiled-classes-phone     [all...]
  /external/libgdx/backends/gdx-backend-android/libs/
android-4.4.jar 

Completed in 1220 milliseconds

1 2