Searched refs:operationList (Results 1 - 3 of 3) sorted by relevance

/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntryCommitter.java81 private Uri pushIntoContentResolver(ArrayList<ContentProviderOperation> operationList) { argument
84 ContactsContract.AUTHORITY, operationList);
H A DVCardEntry.java107 public void constructInsertOperation(List<ContentProviderOperation> operationList, argument
160 public void constructInsertOperation(List<ContentProviderOperation> operationList, argument
205 operationList.add(builder.build());
320 public void constructInsertOperation(List<ContentProviderOperation> operationList, argument
335 operationList.add(builder.build());
410 public void constructInsertOperation(List<ContentProviderOperation> operationList, argument
425 operationList.add(builder.build());
553 public void constructInsertOperation(List<ContentProviderOperation> operationList, argument
590 operationList.add(builder.build());
776 public void constructInsertOperation(List<ContentProviderOperation> operationList, argument
887 constructInsertOperation(List<ContentProviderOperation> operationList, int backReferenceIndex) argument
991 constructInsertOperation(List<ContentProviderOperation> operationList, int backReferenceIndex) argument
1074 constructInsertOperation(List<ContentProviderOperation> operationList, int backReferenceIndex) argument
1127 constructInsertOperation(List<ContentProviderOperation> operationList, int backReferenceIndex) argument
1182 constructInsertOperation(List<ContentProviderOperation> operationList, int backReferenceIndex) argument
1240 constructInsertOperation(List<ContentProviderOperation> operationList, int backReferenceIndex) argument
1296 constructInsertOperation(List<ContentProviderOperation> operationList, int backReferenceIndex) argument
1365 constructInsertOperation(List<ContentProviderOperation> operationList, int backReferenceIndex) argument
1464 constructInsertOperation(List<ContentProviderOperation> operationList, int backReferenceIndex) argument
1709 InsertOperationConstrutor(List<ContentProviderOperation> operationList, int backReferenceIndex) argument
2534 constructInsertOperations(ContentResolver resolver, ArrayList<ContentProviderOperation> operationList) argument
[all...]
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardEntryTests.java354 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());

Completed in 31 milliseconds