Home
last modified time | relevance | path

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

/cts/tests/tests/telecom/src/android/telecom/cts/
DConnectionServiceTest.java338 Connection.CallFilteringCompletionInfo completionInfo = in testCallFilteringCompleteSignalNotInContacts() local
341 assertFalse(completionInfo.isBlocked()); in testCallFilteringCompleteSignalNotInContacts()
342 assertFalse(completionInfo.isInContacts()); in testCallFilteringCompleteSignalNotInContacts()
343 assertEquals(response, completionInfo.getCallResponse()); in testCallFilteringCompleteSignalNotInContacts()
344 assertEquals(PACKAGE, completionInfo.getCallScreeningComponent().getPackageName()); in testCallFilteringCompleteSignalNotInContacts()
387 Connection.CallFilteringCompletionInfo completionInfo = in testCallFilteringCompleteSignalInContacts() local
390 assertFalse(completionInfo.isBlocked()); in testCallFilteringCompleteSignalInContacts()
391 assertTrue(completionInfo.isInContacts()); in testCallFilteringCompleteSignalInContacts()
392 assertEquals(response, completionInfo.getCallResponse()); in testCallFilteringCompleteSignalInContacts()
393 assertEquals(PACKAGE, completionInfo.getCallScreeningComponent().getPackageName()); in testCallFilteringCompleteSignalInContacts()
/cts/tests/tests/widget/src/android/widget/cts/
DTextViewTest.java2043 CompletionInfo completionInfo = new CompletionInfo(0, 0, "android"); in testUndo_imeAutoCompletion() local
2047 assertTrue(input.commitCompletion(completionInfo)); in testUndo_imeAutoCompletion()
2051 verify(spiedTextView, times(1)).onCommitCompletion(refEq(completionInfo)); in testUndo_imeAutoCompletion()