/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/ |
RawContactDeltaList.java | 28 import android.provider.ContactsContract.AggregationExceptions; 125 * any {@link AggregationExceptions} rules needed to groups edits together. 159 builder.withValue(AggregationExceptions.RAW_CONTACT_ID1, joinedRawContactId); 161 builder.withValue(AggregationExceptions.RAW_CONTACT_ID2, rawContactId); 164 AggregationExceptions.RAW_CONTACT_ID2, firstBatch); 179 builder.withValue(AggregationExceptions.RAW_CONTACT_ID1, rawContactId); 180 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID2, firstBatch); 190 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID1, 192 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID2, firstBatch); 228 .newUpdate(AggregationExceptions.CONTENT_URI) [all...] |
/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; 548 Uri contentUri = AggregationExceptions.CONTENT_URI.buildUpon().appendQueryParameter( 555 AggregationExceptions.TYPE, 556 AggregationExceptions.RAW_CONTACT_ID1, 557 AggregationExceptions.RAW_CONTACT_ID2,
|
ContactsActor.java | 47 import android.provider.ContactsContract.AggregationExceptions; 512 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1); 513 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); 514 values.put(AggregationExceptions.TYPE, type); 515 resolver.update(AggregationExceptions.CONTENT_URI, values, null, null);
|
BaseContactsProvider2Test.java | 34 import android.provider.ContactsContract.AggregationExceptions; 508 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1); 509 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); 510 values.put(AggregationExceptions.TYPE, type); 511 assertEquals(1, mResolver.update(AggregationExceptions.CONTENT_URI, values, null, null)); [all...] |
ContactsProvider2Test.java | 34 import android.provider.ContactsContract.AggregationExceptions; 712 assertProjection(AggregationExceptions.CONTENT_URI, new String[]{ 714 AggregationExceptions.TYPE, 715 AggregationExceptions.RAW_CONTACT_ID1, 716 AggregationExceptions.RAW_CONTACT_ID2, [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/ |
ContactAggregatorTest.java | 27 import android.provider.ContactsContract.AggregationExceptions; 64 AggregationExceptions.TYPE, 65 AggregationExceptions.RAW_CONTACT_ID1, 66 AggregationExceptions.RAW_CONTACT_ID2 73 setAggregationException(AggregationExceptions.TYPE_KEEP_TOGETHER, 76 String selection = "(" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId1 77 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId2 78 + ") OR (" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId2 79 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId1 + ")"; 82 Cursor c = mResolver.query(AggregationExceptions.CONTENT_URI [all...] |
/packages/apps/Contacts/tests/src/com/android/contacts/ |
RawContactDeltaListTests.java | 29 import android.provider.ContactsContract.AggregationExceptions; 52 * 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 | 25 import android.provider.ContactsContract.AggregationExceptions; [all...] |
/packages/apps/Contacts/src/com/android/contacts/ |
ContactSaveService.java | 38 import android.provider.ContactsContract.AggregationExceptions; [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ContactsDatabaseHelper.java | 46 import android.provider.ContactsContract.AggregationExceptions; [all...] |
ContactsProvider2.java | 70 import android.provider.ContactsContract.AggregationExceptions; [all...] |
/frameworks/base/core/java/android/provider/ |
ContactsContract.java | 96 * {@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/18/ |
android.jar | |
/prebuilts/sdk/19/ |
android.jar | |
/prebuilts/sdk/6/ |
android.jar | |
/prebuilts/sdk/current/ |
android.jar | |