Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/inputmethod/
DEditorInfo.java541 public UserHandle targetInputMethodUser = null; field in EditorInfo
945 if (targetInputMethodUser != null) { in dumpDebug()
946 proto.write(TARGET_INPUT_METHOD_USER_ID, targetInputMethodUser.getIdentifier()); in dumpDebug()
973 if (targetInputMethodUser != null) { in dump()
974 pw.println(prefix + "targetInputMethodUserId=" + targetInputMethodUser.getIdentifier()); in dump()
1011 UserHandle.writeToParcel(targetInputMethodUser, dest); in writeToParcel()
1045 res.targetInputMethodUser = UserHandle.readFromParcel(source);
/frameworks/base/core/tests/coretests/src/android/view/inputmethod/
DEditorInfoTest.java60 editorInfo.targetInputMethodUser = null; in testNullTargetInputMethodUserParcelable()
61 assertNull(cloneViaParcel(editorInfo).targetInputMethodUser); in testNullTargetInputMethodUserParcelable()
71 editorInfo.targetInputMethodUser = UserHandle.of(TEST_USER_ID); in testNonNullTargetInputMethodUserParcelable()
72 assertEquals(UserHandle.of(TEST_USER_ID), cloneViaParcel(editorInfo).targetInputMethodUser); in testNonNullTargetInputMethodUserParcelable()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DRemoteInputViewTest.java175 return editorInfo.targetInputMethodUser; in getTargetInputMethodUser()
/frameworks/base/services/core/java/com/android/server/inputmethod/
DInputMethodManagerService.java3288 if (attribute != null && attribute.targetInputMethodUser != null in startInputOrWindowGainedFocusInternal()
3289 && attribute.targetInputMethodUser.getIdentifier() != callingUserId) { in startInputOrWindowGainedFocusInternal()
3294 userId = attribute.targetInputMethodUser.getIdentifier(); in startInputOrWindowGainedFocusInternal()
/frameworks/base/core/java/android/widget/
DTextView.java8784 outAttrs.targetInputMethodUser = mTextOperationUser; in onCreateInputConnection()