/frameworks/base/core/tests/coretests/src/android/view/ |
D | ViewInputConnectionTest.java | 91 mActivityRule.runOnUiThread(() -> mImm.showSoftInput(editText1, 0)); in testInputConnectionCallbacks() 112 mActivityRule.runOnUiThread(() -> mImm.showSoftInput(editText2, 0)); in testInputConnectionCallbacks() 145 mActivityRule.runOnUiThread(() -> mImm.showSoftInput(editText1, 0)); in testInputConnectionCallbacks_nullInputConnection() 165 mActivityRule.runOnUiThread(() -> mImm.showSoftInput(editText2, 0)); in testInputConnectionCallbacks_nullInputConnection() 194 mActivityRule.runOnUiThread(() -> mImm.showSoftInput(view1, 0)); in testInputConnectionCallbacks_nonEditableInput() 213 mActivityRule.runOnUiThread(() -> mImm.showSoftInput(view1, 0)); in testInputConnectionCallbacks_nonEditableInput()
|
/frameworks/base/core/java/android/widget/ |
D | ImeAwareEditText.java | 76 imm.showSoftInput(this, 0); in showSoftInputIfNecessary() 88 imm.showSoftInput(this, 0); in scheduleShowSoftInput()
|
D | NumberPicker.java | 1294 showSoftInput(); in performClick() 1304 showSoftInput(); in performLongClick() 1313 private void showSoftInput() { in showSoftInput() method in NumberPicker 1321 inputMethodManager.showSoftInput(mInputText, 0); in showSoftInput()
|
D | SearchView.java | 2091 imm.showSoftInput(this, 0); in showSoftInputIfNecessary() 2110 imm.showSoftInput(this, 0); in setImeVisibility()
|
D | TextView.java | 8655 imm.showSoftInput(this, 0); in onKeyUp() 11214 imm.showSoftInput(this, 0); in onTouchEvent() 12430 handled |= imm.showSoftInput(this, 0); in performAccessibilityActionClick()
|
D | Editor.java | 2497 imm.showSoftInput(mTextView, 0, null); in startActionModeInternal()
|
/frameworks/base/core/java/android/view/inputmethod/ |
D | InputMethod.java | 322 showSoftInput(flags, resultReceiver); in showSoftInputWithToken() 339 public void showSoftInput(int flags, ResultReceiver resultReceiver); in showSoftInput() method
|
D | InputMethodManager.java | 1548 public boolean showSoftInput(View view, int flags) { in showSoftInput() method in InputMethodManager 1552 return fallbackImm.showSoftInput(view, flags); in showSoftInput() 1555 return showSoftInput(view, flags, null); in showSoftInput() 1616 public boolean showSoftInput(View view, int flags, ResultReceiver resultReceiver) { in showSoftInput() method in InputMethodManager 1617 return showSoftInput(view, flags, resultReceiver, SoftInputShowHideReason.SHOW_SOFT_INPUT); in showSoftInput() 1620 private boolean showSoftInput(View view, int flags, ResultReceiver resultReceiver, in showSoftInput() method in InputMethodManager 1627 return fallbackImm.showSoftInput(view, flags, resultReceiver); in showSoftInput() 1640 return mService.showSoftInput( in showSoftInput() 1672 mService.showSoftInput( in showSoftInputUnchecked() 1826 showSoftInput(view, showFlags, null, in toggleSoftInput() [all …]
|
/frameworks/base/core/java/com/android/internal/inputmethod/ |
D | IMultiClientInputMethodSession.aidl | 27 void showSoftInput(int flags, in ResultReceiver resultReceiver); in showSoftInput() method
|
/frameworks/base/libs/WindowManager/Shell/tests/flicker/test-apps/flickerapp/src/com/android/wm/shell/flicker/testapp/ |
D | ImeActivity.java | 60 mImm.showSoftInput(mEditText, InputMethodManager.SHOW_FORCED); in handleIntent()
|
/frameworks/base/core/java/android/webkit/ |
D | FindActionModeCallback.java | 158 public void showSoftInput() { in showSoftInput() method in FindActionModeCallback 160 mInput.showSoftInput(mEditText, 0); in showSoftInput()
|
/frameworks/base/core/java/com/android/internal/view/ |
D | IInputMethod.aidl | 57 void showSoftInput(in IBinder showInputToken, int flags, in ResultReceiver resultReceiver); in showSoftInput() method
|
D | IInputMethodManager.aidl | 44 boolean showSoftInput(in IInputMethodClient client, IBinder windowToken, int flags, in showSoftInput() method
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | MultiClientInputMethodClientCallbackAdaptor.java | 345 public void showSoftInput(int flags, ResultReceiver resultReceiver) { in showSoftInput() method in MultiClientInputMethodClientCallbackAdaptor.MultiClientInputMethodSessionImpl 351 CallbackImpl::showSoftInput, mCallbackImpl, flags, in showSoftInput() 450 void showSoftInput(int flags, ResultReceiver resultReceiver) { in showSoftInput() method in MultiClientInputMethodClientCallbackAdaptor.CallbackImpl
|
D | IInputMethodWrapper.java | 384 public void showSoftInput(IBinder showInputToken, int flags, ResultReceiver resultReceiver) { in showSoftInput() method in IInputMethodWrapper
|
D | InputMethodService.java | 790 showSoftInput(flags, resultReceiver); in showSoftInputWithToken() 800 public void showSoftInput(int flags, ResultReceiver resultReceiver) { in showSoftInput() method in InputMethodService.InputMethodImpl
|
/frameworks/base/apct-tests/perftests/core/src/android/view/ |
D | InputStageBenchmark.java | 143 imm.showSoftInput(view, InputMethodManager.SHOW_IMPLICIT); in showSoftKeyboard()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardPasswordViewController.java | 211 mInputMethodManager.showSoftInput( in showInput()
|
/frameworks/base/core/java/android/app/ |
D | NativeActivity.java | 330 mIMM.showSoftInput(mNativeContentView, mode); in showIme()
|
/frameworks/base/services/core/java/com/android/server/inputmethod/ |
D | MultiClientInputMethodManagerService.java | 1507 public boolean showSoftInput( in showSoftInput() method in MultiClientInputMethodManagerService.ApiCallbacks 1541 clientInfo.mMSInputMethodSession.showSoftInput(flags, resultReceiver); in showSoftInputInternal()
|
D | InputMethodManagerService.java | 3054 public boolean showSoftInput(IInputMethodClient client, IBinder windowToken, int flags, in showSoftInput() method in InputMethodManagerService 4244 ((IInputMethod) args.arg1).showSoftInput( in handleMessage()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | RemoteInputView.java | 1030 mInputMethodManager.showSoftInput(RemoteEditText.this, 0); in onCreateInputConnection()
|
/frameworks/ex/common/java/com/android/ex/editstyledtext/ |
D | EditStyledText.java | 1808 if (imm.showSoftInput(mEST, 0, mSkr) && mSkr != null) { in showSoftKey()
|
/frameworks/base/core/java/android/view/autofill/ |
D | AutofillManager.java | 2652 boolean ret = inputMethodManager.showSoftInput(view, /*flags=*/ 0); in requestShowSoftInputInViewThread()
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/ |
D | PrintActivity.java | 1911 imm.showSoftInput(mPageRangeEditText, 0); in updateOptionsUi()
|