Lines Matching defs:ic

333             final InputConnection ic = getCurrentInputConnection();
334 if (ei != null && ic != null) {
336 ic.performEditorAction(ei.actionId);
339 ic.performEditorAction(ei.imeOptions&EditorInfo.IME_MASK_ACTION);
370 + " ic=" + mInputConnection);
371 InputConnection ic = getCurrentInputConnection();
372 if (ic != null) ic.reportFullscreenMode(mIsFullscreen);
382 + " ic=" + mInputConnection);
388 public void startInput(InputConnection ic, EditorInfo attribute) {
390 doStartInput(ic, attribute, false);
393 public void restartInput(InputConnection ic, EditorInfo attribute) {
395 doStartInput(ic, attribute, true);
858 InputConnection ic = mStartedInputConnection;
859 if (ic != null) {
860 return ic;
887 InputConnection ic = getCurrentInputConnection();
888 if (ic != null) ic.reportFullscreenMode(isFullscreen);
1304 InputConnection ic = getCurrentInputConnection();
1305 if (ic != null) {
1306 ic.finishComposingText();
1349 InputConnection ic = getCurrentInputConnection();
1350 if (ic != null) {
1351 ic.finishComposingText();
1576 void doStartInput(InputConnection ic, EditorInfo attribute, boolean restarting) {
1581 mStartedInputConnection = ic;
1613 InputConnection ic = getCurrentInputConnection();
1614 if (ic != null) {
1615 ic.finishComposingText();
1965 InputConnection ic = getCurrentInputConnection();
1966 if (ic == null) return;
1968 ic.sendKeyEvent(new KeyEvent(eventTime, eventTime,
1971 ic.sendKeyEvent(new KeyEvent(eventTime, SystemClock.uptimeMillis(),
2002 InputConnection ic = getCurrentInputConnection();
2003 if (ic != null) {
2004 ic.performEditorAction(ei.imeOptions&EditorInfo.IME_MASK_ACTION);
2038 InputConnection ic = getCurrentInputConnection();
2039 if (ic != null) {
2040 ic.commitText(String.valueOf((char) charCode), 1);
2142 InputConnection ic = getCurrentInputConnection();
2143 if (ic != null) {
2144 ic.performContextMenuAction(id);
2268 InputConnection ic = getCurrentInputConnection();
2269 mExtractedText = ic == null? null
2270 : ic.getExtractedText(req, InputConnection.GET_EXTRACTED_TEXT_MONITOR);
2271 if (mExtractedText == null || ic == null) {
2273 + mExtractedText + ", input connection = " + ic);