HomeSort by relevance Sort by last modified time
    Searched defs:operationList (Results 1 - 3 of 3) sorted by null

  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardEntryTests.java 354 ArrayList<ContentProviderOperation> operationList =
356 entry.constructInsertOperations(resolver, operationList);
360 assertEquals(2, operationList.size());
361 assertEquals(ContentProviderOperation.TYPE_INSERT, operationList.get(0).getType());
362 assertEquals(ContentProviderOperation.TYPE_INSERT, operationList.get(1).getType());
371 ArrayList<ContentProviderOperation> operationList =
373 entry.constructInsertOperations(resolver, operationList);
374 assertEquals(0, operationList.size());
  /packages/services/Telephony/src/com/android/phone/
SimContacts.java 150 final ArrayList<ContentProviderOperation> operationList =
161 operationList.add(builder.build());
167 operationList.add(builder.build());
175 operationList.add(builder.build());
184 operationList.add(builder.build());
193 operationList.add(builder.build());
197 resolver.applyBatch(ContactsContract.AUTHORITY, operationList);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/
AttentionManagementVerifierActivity.java 143 final ArrayList<ContentProviderOperation> operationList = new ArrayList<>();
144 operationList.add(ContentProviderOperation.newDelete(mAliceUri).build());
145 operationList.add(ContentProviderOperation.newDelete(mBobUri).build());
147 mContext.getContentResolver().applyBatch(ContactsContract.AUTHORITY, operationList);
    [all...]

Completed in 79 milliseconds