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.java355 Connection.CallFilteringCompletionInfo completionInfo = in testCallFilteringCompleteSignalNotInContacts() local
358 assertFalse(completionInfo.isBlocked()); in testCallFilteringCompleteSignalNotInContacts()
359 assertFalse(completionInfo.isInContacts()); in testCallFilteringCompleteSignalNotInContacts()
360 assertEquals(response, completionInfo.getCallResponse()); in testCallFilteringCompleteSignalNotInContacts()
361 assertEquals(PACKAGE, completionInfo.getCallScreeningComponent().getPackageName()); in testCallFilteringCompleteSignalNotInContacts()
404 Connection.CallFilteringCompletionInfo completionInfo = in testCallFilteringCompleteSignalInContacts() local
407 assertFalse(completionInfo.isBlocked()); in testCallFilteringCompleteSignalInContacts()
408 assertTrue(completionInfo.isInContacts()); in testCallFilteringCompleteSignalInContacts()
409 assertEquals(response, completionInfo.getCallResponse()); in testCallFilteringCompleteSignalInContacts()
410 assertEquals(PACKAGE, completionInfo.getCallScreeningComponent().getPackageName()); in testCallFilteringCompleteSignalInContacts()
/cts/tests/tests/widget/src/android/widget/cts/
DTextViewTest.java2101 CompletionInfo completionInfo = new CompletionInfo(0, 0, "android"); in testUndo_imeAutoCompletion() local
2105 assertTrue(input.commitCompletion(completionInfo)); in testUndo_imeAutoCompletion()
2109 verify(spiedTextView, times(1)).onCommitCompletion(refEq(completionInfo)); in testUndo_imeAutoCompletion()