Home | History | Annotate | Download | only in cts

Lines Matching refs:times

30 import static org.mockito.Mockito.times;
70 verify(inputConnection, times(1)).beginBatchEdit();
73 verify(inputConnection, times(1)).clearMetaKeyStates(KeyEvent.META_ALT_ON);
78 verify(inputConnection, times(1)).commitCompletion(completionInfoCaptor.capture());
86 verify(inputConnection, times(1)).commitCorrection(correctionInfoCaptor.capture());
92 verify(inputConnection, times(1)).commitText(sameCharSequence("Text"), eq(1));
95 verify(inputConnection, times(1)).deleteSurroundingText(10, 100);
98 verify(inputConnection, times(1)).deleteSurroundingTextInCodePoints(10, 100);
101 verify(inputConnection, times(1)).endBatchEdit();
104 verify(inputConnection, times(1)).finishComposingText();
107 verify(inputConnection, times(1)).getCursorCapsMode(TextUtils.CAP_MODE_CHARACTERS);
110 verify(inputConnection, times(1)).getExtractedText(any(ExtractedTextRequest.class), eq(0));
113 verify(inputConnection, times(1)).getTextAfterCursor(5, 0);
116 verify(inputConnection, times(1)).getTextBeforeCursor(3, 0);
119 verify(inputConnection, times(1)).performContextMenuAction(1);
122 verify(inputConnection, times(1)).performEditorAction(EditorInfo.IME_ACTION_GO);
125 verify(inputConnection, times(1)).performPrivateCommand(eq("com.android.action.MAIN"),
129 verify(inputConnection, times(1)).reportFullscreenMode(true);
133 verify(inputConnection, times(1)).sendKeyEvent(keyEventCaptor.capture());
138 verify(inputConnection, times(1)).setComposingText("Text", 1);
141 verify(inputConnection, times(1)).setSelection(0, 10);
144 verify(inputConnection, times(1)).getSelectedText(0);
147 verify(inputConnection, times(1)).setComposingRegion(0, 3);
150 verify(inputConnection, times(1))
154 verify(inputConnection, times(1)).closeConnection();
158 verify(inputConnection, times(1)).getHandler();
168 verify(inputConnection, times(1)).commitContent(inputContentInfo, 0, null);