Home
last modified time | relevance | path

Searched refs:editorInfo (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/view/inputmethod/
DEditorInfoTest.java45 final EditorInfo editorInfo = new EditorInfo(); in testNullTargetInputMethodUserParcelable() local
46 editorInfo.targetInputMethodUser = null; in testNullTargetInputMethodUserParcelable()
47 assertNull(cloneViaParcel(editorInfo).targetInputMethodUser); in testNullTargetInputMethodUserParcelable()
56 final EditorInfo editorInfo = new EditorInfo(); in testNonNullTargetInputMethodUserParcelable() local
57 editorInfo.targetInputMethodUser = UserHandle.of(TEST_USER_ID); in testNonNullTargetInputMethodUserParcelable()
58 assertEquals(UserHandle.of(TEST_USER_ID), cloneViaParcel(editorInfo).targetInputMethodUser); in testNonNullTargetInputMethodUserParcelable()
/frameworks/base/core/java/android/view/inputmethod/
DInputMethod.java221 @NonNull EditorInfo editorInfo, boolean restarting, in dispatchStartInputWithToken() argument
224 restartInput(inputConnection, editorInfo); in dispatchStartInputWithToken()
226 startInput(inputConnection, editorInfo); in dispatchStartInputWithToken()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DRemoteInputViewTest.java141 EditorInfo editorInfo = new EditorInfo(); in getTargetInputMethodUser() local
142 editorInfo.packageName = DUMMY_MESSAGE_APP_PKG; in getTargetInputMethodUser()
143 editorInfo.fieldId = editText.getId(); in getTargetInputMethodUser()
144 InputConnection ic = editText.onCreateInputConnection(editorInfo); in getTargetInputMethodUser()
146 return editorInfo.targetInputMethodUser; in getTargetInputMethodUser()
/frameworks/base/core/java/android/inputmethodservice/
DMultiClientInputMethodClientCallbackAdaptor.java320 int missingMethods, @Nullable EditorInfo editorInfo, int controlFlags, in startInputOrWindowGainedFocus() argument
333 args.arg2 = editorInfo; in startInputOrWindowGainedFocus()
444 final EditorInfo editorInfo = (EditorInfo) args.arg2; in startInputOrWindowGainedFocus() local
448 mOriginalCallback.onStartInputOrWindowGainedFocus(inputConnection, editorInfo, in startInputOrWindowGainedFocus()
DMultiClientInputMethodServiceDelegate.java163 @Nullable EditorInfo editorInfo, in onStartInputOrWindowGainedFocus() argument
DInputMethodService.java576 @NonNull EditorInfo editorInfo, boolean restarting, in dispatchStartInputWithToken() argument
583 restartInput(inputConnection, editorInfo); in dispatchStartInputWithToken()
585 startInput(inputConnection, editorInfo); in dispatchStartInputWithToken()
3016 @NonNull EditorInfo editorInfo) { in exposeContentInternal() argument
3019 mPrivOps.createInputContentUriToken(contentUri, editorInfo.packageName); in exposeContentInternal()
3022 + " packageName=" + editorInfo.packageName); in exposeContentInternal()
/frameworks/base/services/core/java/com/android/server/inputmethod/
DMultiClientInputMethodManagerService.java1524 @Nullable EditorInfo editorInfo, in startInputOrWindowGainedFocus() argument
1537 editorInfo != null && InputMethodUtils.checkIfPackageBelongsToUid( in startInputOrWindowGainedFocus()
1538 mAppOpsManager, callingUid, editorInfo.packageName); in startInputOrWindowGainedFocus()
1539 if (editorInfo != null && !packageNameVerified) { in startInputOrWindowGainedFocus()
1541 + " uid=" + callingUid + " package=" + editorInfo.packageName); in startInputOrWindowGainedFocus()
1592 if (editorInfo == null) { in startInputOrWindowGainedFocus()
1603 inputContext, missingMethods, editorInfo, startInputFlags, in startInputOrWindowGainedFocus()
1635 inputContext, missingMethods, editorInfo, startInputFlags, in startInputOrWindowGainedFocus()
DInputMethodManagerService.java741 @NonNull EditorInfo editorInfo, @SoftInputModeFlags int targetWindowSoftInputMode, in StartInputInfo() argument
755 mEditorInfo = editorInfo; in StartInputInfo()
3789 final EditorInfo editorInfo = (EditorInfo) args.arg4; in handleMessage() local
3793 editorInfo, restarting, session.client.shouldPreRenderIme); in handleMessage()
/frameworks/base/core/java/android/widget/
DSearchView.java2072 public InputConnection onCreateInputConnection(EditorInfo editorInfo) { in onCreateInputConnection() argument
2073 final InputConnection ic = super.onCreateInputConnection(editorInfo); in onCreateInputConnection()