Home
last modified time | relevance | path

Searched refs:targetInputMethodUser (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/view/inputmethod/
DEditorInfoTest.java46 editorInfo.targetInputMethodUser = null; in testNullTargetInputMethodUserParcelable()
47 assertNull(cloneViaParcel(editorInfo).targetInputMethodUser); in testNullTargetInputMethodUserParcelable()
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/
DEditorInfo.java492 public UserHandle targetInputMethodUser = null; field in EditorInfo
550 if (targetInputMethodUser != null) { in dump()
551 pw.println(prefix + "targetInputMethodUserId=" + targetInputMethodUser.getIdentifier()); in dump()
582 UserHandle.writeToParcel(targetInputMethodUser, dest); in writeToParcel()
609 res.targetInputMethodUser = UserHandle.readFromParcel(source);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DRemoteInputViewTest.java146 return editorInfo.targetInputMethodUser; in getTargetInputMethodUser()
/frameworks/base/services/core/java/com/android/server/inputmethod/
DInputMethodManagerService.java2925 if (attribute != null && attribute.targetInputMethodUser != null in startInputOrWindowGainedFocus()
2926 && attribute.targetInputMethodUser.getIdentifier() != callingUserId) { in startInputOrWindowGainedFocus()
2929 userId = attribute.targetInputMethodUser.getIdentifier(); in startInputOrWindowGainedFocus()
/frameworks/base/core/java/android/widget/
DTextView.java8668 outAttrs.targetInputMethodUser = mTextOperationUser; in onCreateInputConnection()