Searched refs:curMethod (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/services/core/java/com/android/server/inputmethod/ |
D | DefaultImeVisibilityApplier.java | 84 final IInputMethodInvoker curMethod = mService.getCurMethodLocked(); in performShowIme() local 85 if (curMethod != null) { in performShowIme() 87 Slog.v(TAG, "Calling " + curMethod + ".showSoftInput(" + showInputToken in performShowIme() 92 if (curMethod.showSoftInput(showInputToken, statsToken, showFlags, resultReceiver)) { in performShowIme() 111 final IInputMethodInvoker curMethod = mService.getCurMethodLocked(); in performHideIme() local 112 if (curMethod != null) { in performHideIme() 118 Slog.v(TAG, "Calling " + curMethod + ".hideSoftInput(0, " + hideInputToken in performHideIme() 123 if (curMethod.hideSoftInput(hideInputToken, statsToken, 0, resultReceiver)) { in performHideIme()
|
D | AutofillSuggestionsController.java | 133 IInputMethodInvoker curMethod = mBindingController.getCurMethod(); in performOnCreateInlineSuggestionsRequest() local 135 Slog.d(TAG, "Performing onCreateInlineSuggestionsRequest. mCurMethod = " + curMethod); in performOnCreateInlineSuggestionsRequest() 137 if (curMethod != null) { in performOnCreateInlineSuggestionsRequest() 144 curMethod.onCreateInlineSuggestionsRequest( in performOnCreateInlineSuggestionsRequest()
|
D | InputMethodManagerService.java | 1337 IInputMethodInvoker curMethod = getCurMethodLocked(); in run() local 1338 if (curMethod != null) { in run() 1339 curMethod.initInkWindow(); in run() 1347 IInputMethodInvoker curMethod = getCurMethodLocked(); in onUpdateEditorToolType() local 1348 if (curMethod != null) { in onUpdateEditorToolType() 1349 curMethod.updateEditorToolType(toolType); in onUpdateEditorToolType() 1356 IInputMethodInvoker curMethod = getCurMethodLocked(); in discardHandwritingDelegationText() local 1357 if (curMethod != null) { in discardHandwritingDelegationText() 1358 curMethod.discardHandwritingDelegationText(); in discardHandwritingDelegationText() 1886 IInputMethodInvoker curMethod = getCurMethodLocked(); in onClientRemoved() local [all …]
|