Searched refs:restarting (Results 1 – 3 of 3) sorted by relevance
/cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/ime/ |
D | CtsBaseInputMethod.java | 87 public void onStartInput(EditorInfo editorInfo, boolean restarting) { in onStartInput() argument 91 + " restarting=" + restarting); in onStartInput() 93 sendEvent(ON_START_INPUT, editorInfo, restarting); in onStartInput() 95 super.onStartInput(editorInfo, restarting); in onStartInput() 111 public void onStartInputView(EditorInfo editorInfo, boolean restarting) { in onStartInputView() argument 115 + " restarting=" + restarting); in onStartInputView() 117 sendEvent(ON_START_INPUT_VIEW, editorInfo, restarting); in onStartInputView() 119 super.onStartInputView(editorInfo, restarting); in onStartInputView()
|
/cts/tests/app/src/android/app/cts/ |
D | ActivityManager_RunningServiceInfoTest.java | 44 mRunningServiceInfo.restarting = 1l; in setUp() 71 assertEquals(1l, values.restarting); in testWriteToParcel() 91 assertEquals(1l, values.restarting); in testReadFromParcel()
|
/cts/tests/inputmethod/mockime/src/com/android/cts/mockime/ |
D | MockIme.java | 499 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, 720 arguments.putBoolean("restarting", restarting); 724 public void onStartInputView(EditorInfo editorInfo, boolean restarting, 728 arguments.putBoolean("restarting", restarting);
|