Searched refs:RawContactUtil (Results 1 – 9 of 9) sorted by relevance
/cts/tests/tests/provider/src/android/provider/cts/ |
D | ContactsContract_RawContactsTest.java | 33 import android.provider.cts.contacts.RawContactUtil; 129 long rawContactid = RawContactUtil.insertRawContact(mResolver, in testRawContactDelete_setsDeleteFlag() 132 assertTrue(RawContactUtil.rawContactExistsById(mResolver, rawContactid)); in testRawContactDelete_setsDeleteFlag() 134 RawContactUtil.delete(mResolver, rawContactid, false); in testRawContactDelete_setsDeleteFlag() 140 String[] result = RawContactUtil.queryByRawContactId(mResolver, rawContactid, in testRawContactDelete_setsDeleteFlag() 150 long rawContactid = RawContactUtil.insertRawContact(mResolver, in testRawContactDelete_removesRecord() 152 assertTrue(RawContactUtil.rawContactExistsById(mResolver, rawContactid)); in testRawContactDelete_removesRecord() 154 RawContactUtil.delete(mResolver, rawContactid, true); in testRawContactDelete_removesRecord() 156 assertFalse(RawContactUtil.rawContactExistsById(mResolver, rawContactid)); in testRawContactDelete_removesRecord() 173 RawContactUtil.delete(mResolver, ids.mRawContactId, true); in testRawContactCreate_updatesContactUpdatedTimestamp() [all …]
|
D | ContactsContract_ContactsTest.java | 36 import android.provider.cts.contacts.RawContactUtil; 132 RawContactUtil.delete(mResolver, ids.mRawContactId, true); 142 List<String[]> records = RawContactUtil.queryByContactId(mResolver, ids.mContactId, 150 RawContactUtil.delete(mResolver, ids.mRawContactId, true); 168 RawContactUtil.delete(mResolver, ids.mRawContactId, true);
|
D | ContactsContract_DataUsageTest.java | 27 import android.provider.cts.contacts.RawContactUtil; 58 RawContactUtil.delete(mResolver, ids.mRawContactId, true); in testSingleDataUsageFeedback_incrementsCorrectDataItems() 81 RawContactUtil.delete(mResolver, ids.mRawContactId, true); in testMultiIdDataUsageFeedback_incrementsCorrectDataItems()
|
D | ContactsProvider2_AccountRemovalTest.java | 30 import android.provider.cts.contacts.RawContactUtil; 173 long contactId = RawContactUtil.queryContactIdByRawContactId(mResolver, rawContactId); in checkMerged() 174 long contactId2 = RawContactUtil.queryContactIdByRawContactId(mResolver, rawContactId2); in checkMerged() 224 if (!RawContactUtil.rawContactExistsById(mResolver, ids.mRawContactId)) { in assertContactsDeletedEventually()
|
D | ContactsContract_DeletedContacts.java | 29 import android.provider.cts.contacts.RawContactUtil; 138 RawContactUtil.delete(mResolver, ids.mRawContactId, true); in createAndDeleteContact()
|
D | ContactsContract_PinnedPositionsTest.java | 36 import android.provider.cts.contacts.RawContactUtil; 229 final long cId1 = RawContactUtil.queryContactIdByRawContactId(mResolver, i1.mRawContactId); in testPinnedPositionsAfterJoinAndSplit() 230 final long cId4 = RawContactUtil.queryContactIdByRawContactId(mResolver, i4.mRawContactId); in testPinnedPositionsAfterJoinAndSplit()
|
D | ContactsContract_DataTest.java | 47 import android.provider.cts.contacts.RawContactUtil; 547 RawContactUtil.delete(mResolver, ids.mRawContactId, true); in testDataInsert_updatesContactLastUpdatedTimestamp() 564 RawContactUtil.delete(mResolver, ids.mRawContactId, true); in testDataDelete_updatesContactLastUpdatedTimestamp() 646 RawContactUtil.delete(mResolver, ids.mRawContactId, true); in testDataUpdate_updatesContactLastUpdatedTimestamp()
|
/cts/tests/tests/provider/src/android/provider/cts/contacts/ |
D | DatabaseAsserts.java | 75 long rawContactId = RawContactUtil.createRawContactWithName(resolver, account, name); in assertAndCreateContactWithName() 77 long contactId = RawContactUtil.queryContactIdByRawContactId(resolver, rawContactId); in assertAndCreateContactWithName() 89 long rawContactId = RawContactUtil.createRawContactWithAutoGeneratedName(resolver, account); in assertAndCreateContact() 91 long contactId = RawContactUtil.queryContactIdByRawContactId(resolver, rawContactId); in assertAndCreateContact()
|
D | RawContactUtil.java | 32 public class RawContactUtil { class 96 String[] result = RawContactUtil.queryByRawContactId(resolver, rawContactid, in queryContactIdByRawContactId()
|