Home
last modified time | relevance | path

Searched refs:idList (Results 1 – 2 of 2) sorted by relevance

/cts/tests/tests/contactsprovider/src/android/provider/cts/contacts/
DContactsProvider2_AccountRemovalTest.java119 List<ContactIdPair> idList = createAndAssertMergedContact(ACCT_1, ACCT_1); in testAccountRemovalWithMergedContact_deletesContacts() local
121 assertContactsDeletedEventually(System.currentTimeMillis(), idList); in testAccountRemovalWithMergedContact_deletesContacts() local
230 List<ContactIdPair> idList = createAndAssertMergedContact(ACCT_1, ACCT_2); in testAccountRemovalWithMergedContact_doesNotDeleteContactAndTimestampUpdated() local
231 long contactId = idList.get(0).mContactId; in testAccountRemovalWithMergedContact_doesNotDeleteContactAndTimestampUpdated()
247 List<ContactIdPair> idList = createAndAssertMergedContact(ACCT_1, ACCT_1); in testAccountRemovalWithMergedContact_hasDeleteLogsForContacts() local
250 assertContactsInDeleteLogEventually(start, idList); in testAccountRemovalWithMergedContact_hasDeleteLogsForContacts()
294 private void assertContactsInDeleteLogEventually(long start, List<ContactIdPair> idList) { in assertContactsInDeleteLogEventually() argument
296 ArrayList<ContactIdPair> remaining = new ArrayList<ContactIdPair>(idList.size()); in assertContactsInDeleteLogEventually()
297 remaining.addAll(idList); in assertContactsInDeleteLogEventually()
325 private void assertContactsDeletedEventually(long start, List<ContactIdPair> idList) { in assertContactsDeletedEventually() argument
[all …]
/cts/tests/tests/telephony/current/src/android/telephony/cts/
DSubscriptionManagerTest.java234 int[] idList = mSm.getActiveSubscriptionIdList(); in testActiveSubscriptions() local
237 assertNotNull("Active subscriber required", idList); in testActiveSubscriptions()
239 assertNotEquals("Active subscriber required", 0, idList.length); in testActiveSubscriptions()
243 assertTrue(ArrayUtils.contains(idList, subList.get(i).getSubscriptionId())); in testActiveSubscriptions()