Home
last modified time | relevance | path

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

/cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/ime/
DCtsBaseInputMethod.java87 public void onStartInput(EditorInfo editorInfo, boolean restarting) { in onStartInput() argument
90 + " editorInfo=" + editorInfo in onStartInput()
93 sendEvent(ON_START_INPUT, editorInfo, restarting); in onStartInput()
95 super.onStartInput(editorInfo, restarting); in onStartInput()
97 if (editorInfo.extras != null) { in onStartInput()
99 editorInfo.extras.getString(EDITOR_INFO_KEY_REPLY_USER_HANDLE_SESSION_ID, null); in onStartInput()
111 public void onStartInputView(EditorInfo editorInfo, boolean restarting) { in onStartInputView() argument
114 + " editorInfo=" + editorInfo in onStartInputView()
117 sendEvent(ON_START_INPUT_VIEW, editorInfo, restarting); in onStartInputView()
119 super.onStartInputView(editorInfo, restarting); in onStartInputView()
/cts/hostsidetests/inputmethodservice/deviceside/devicetest/src/android/inputmethodservice/cts/devicetest/
DMultiUserDeviceTest.java95 public InputConnection onCreateInputConnection(EditorInfo editorInfo) { in testConnectingToTheSameUserIme()
96 final InputConnection original = super.onCreateInputConnection(editorInfo); in testConnectingToTheSameUserIme()
97 if (editorInfo.extras == null) { in testConnectingToTheSameUserIme()
98 editorInfo.extras = new Bundle(); in testConnectingToTheSameUserIme()
100 editorInfo.extras.putString( in testConnectingToTheSameUserIme()
/cts/tests/inputmethod/mockime/src/com/android/cts/mockime/
DImeEventStreamTestUtils.java157 final EditorInfo editorInfo = event.getArguments().getParcelable("editorInfo"); in editorMatcher() field in ImeEventStreamTestUtils
158 return TextUtils.equals(marker, editorInfo.privateImeOptions); in editorMatcher()
174 final EditorInfo editorInfo = event.getArguments().getParcelable("editorInfo");
175 return fieldId == editorInfo.fieldId;
DMockIme.java499 public void onStartInput(EditorInfo editorInfo, boolean restarting) { in onStartInput() argument
500 getTracer().onStartInput(editorInfo, restarting, in onStartInput()
501 () -> super.onStartInput(editorInfo, restarting)); in onStartInput()
505 public void onStartInputView(EditorInfo editorInfo, boolean restarting) { in onStartInputView() argument
506 getTracer().onStartInputView(editorInfo, restarting, in onStartInputView()
507 () -> super.onStartInputView(editorInfo, restarting)); in onStartInputView()
716 public void onStartInput(EditorInfo editorInfo, boolean restarting,
719 arguments.putParcelable("editorInfo", editorInfo);
724 public void onStartInputView(EditorInfo editorInfo, boolean restarting,
727 arguments.putParcelable("editorInfo", editorInfo);
/cts/common/device-side/util/src/com/android/compatibility/common/util/
DImeAwareEditText.java59 public InputConnection onCreateInputConnection(EditorInfo editorInfo) { in onCreateInputConnection() argument
60 final InputConnection ic = super.onCreateInputConnection(editorInfo); in onCreateInputConnection()
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DImeAwareEditText.java59 public InputConnection onCreateInputConnection(EditorInfo editorInfo) { in onCreateInputConnection() argument
60 final InputConnection ic = super.onCreateInputConnection(editorInfo); in onCreateInputConnection()
/cts/tests/inputmethod/src/android/view/inputmethod/cts/
DOnScreenPositionTest.java106 final EditorInfo editorInfo = event.getArguments().getParcelable("editorInfo"); in testImeIsNotBehindNavBar()
107 return TextUtils.equals(TEST_MARKER, editorInfo.privateImeOptions); in testImeIsNotBehindNavBar()
DKeyboardVisibilityControlTest.java74 final EditorInfo editorInfo = event.getArguments().getParcelable("editorInfo"); in editorMatcher() field in KeyboardVisibilityControlTest
75 return TextUtils.equals(marker, editorInfo.privateImeOptions); in editorMatcher()
DNavigationBarColorTest.java266 final EditorInfo editorInfo = event.getArguments().getParcelable("editorInfo"); in getNavigationBarBitmap()
267 return TextUtils.equals(TEST_MARKER, editorInfo.privateImeOptions); in getNavigationBarBitmap()
DInputMethodServiceTest.java251 public InputConnection onCreateInputConnection(EditorInfo editorInfo) {
253 super.onCreateInputConnection(editorInfo), false) {
DFocusHandlingTest.java307 final EditorInfo editorInfo = event.getArguments().getParcelable("editorInfo"); in testFocusableWindowDoesNotInvalidateExistingInputConnection()
308 return TextUtils.equals(marker2, editorInfo.privateImeOptions); in testFocusableWindowDoesNotInvalidateExistingInputConnection()
/cts/tests/framework/base/windowmanager/src/android/server/wm/
DMultiDisplaySystemDecorationTests.java467 final EditorInfo editorInfo = event.getArguments().getParcelable("editorInfo"); in testImeApiForBug118341760()
468 return TextUtils.equals(editorInfo.packageName, mContext.getPackageName()) in testImeApiForBug118341760()
469 && TextUtils.equals(editorInfo.privateImeOptions, privateImeOption); in testImeApiForBug118341760()
/cts/tests/tests/widget/src/android/widget/cts/
DTextViewTest.java5495 final EditorInfo editorInfo = new EditorInfo(); in testAccessImeHintLocales() local
5496 textView.onCreateInputConnection(editorInfo); in testAccessImeHintLocales()
5497 assertNull(editorInfo.hintLocales); in testAccessImeHintLocales()
5504 final EditorInfo editorInfo = new EditorInfo(); in testAccessImeHintLocales() local
5505 textView.onCreateInputConnection(editorInfo); in testAccessImeHintLocales()
5506 assertEquals(localeList, editorInfo.hintLocales); in testAccessImeHintLocales()