Searched refs:operationList (Results 1 – 3 of 3) sorted by relevance
/frameworks/opt/vcard/java/com/android/vcard/ |
D | VCardEntry.java | 108 public void constructInsertOperation(List<ContentProviderOperation> operationList, in constructInsertOperation() argument 161 public void constructInsertOperation(List<ContentProviderOperation> operationList, in constructInsertOperation() argument 206 operationList.add(builder.build()); in constructInsertOperation() 321 public void constructInsertOperation(List<ContentProviderOperation> operationList, in constructInsertOperation() argument 336 operationList.add(builder.build()); in constructInsertOperation() 411 public void constructInsertOperation(List<ContentProviderOperation> operationList, in constructInsertOperation() argument 426 operationList.add(builder.build()); in constructInsertOperation() 554 public void constructInsertOperation(List<ContentProviderOperation> operationList, in constructInsertOperation() argument 591 operationList.add(builder.build()); in constructInsertOperation() 777 public void constructInsertOperation(List<ContentProviderOperation> operationList, in constructInsertOperation() argument [all …]
|
D | VCardEntryCommitter.java | 81 private Uri pushIntoContentResolver(ArrayList<ContentProviderOperation> operationList) { in pushIntoContentResolver() argument 84 ContactsContract.AUTHORITY, operationList); in pushIntoContentResolver()
|
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/ |
D | VCardEntryTests.java | 354 ArrayList<ContentProviderOperation> operationList = in testConstructInsertOperationsInsertName() local 356 entry.constructInsertOperations(resolver, operationList); in testConstructInsertOperationsInsertName() 360 assertEquals(2, operationList.size()); in testConstructInsertOperationsInsertName() 361 assertEquals(ContentProviderOperation.TYPE_INSERT, operationList.get(0).getType()); in testConstructInsertOperationsInsertName() 362 assertEquals(ContentProviderOperation.TYPE_INSERT, operationList.get(1).getType()); in testConstructInsertOperationsInsertName() 371 ArrayList<ContentProviderOperation> operationList = in testConstructInsertOperationsEmptyData() local 373 entry.constructInsertOperations(resolver, operationList); in testConstructInsertOperationsEmptyData() 374 assertEquals(0, operationList.size()); in testConstructInsertOperationsEmptyData()
|