Home
last modified time | relevance | path

Searched refs:mRequestedShowExplicitly (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/inputmethod/
DImeVisibilityStateComputer.java94 boolean mRequestedShowExplicitly; field in ImeVisibilityStateComputer
245 mRequestedShowExplicitly = true; in onImeShowFlags()
248 mRequestedShowExplicitly = true; in onImeShowFlags()
262 && (mRequestedShowExplicitly || mShowForced)) { in canHideIme()
285 } else if (mRequestedShowExplicitly) { in getShowFlagsForInputMethodServiceOnly()
300 } else if (!mRequestedShowExplicitly) { in getShowFlags()
307 mRequestedShowExplicitly = false; in clearImeShowFlags()
599 proto.write(SHOW_EXPLICITLY_REQUESTED, mRequestedShowExplicitly); in dumpDebug()
608 p.println(prefix + "mRequestedShowExplicitly=" + mRequestedShowExplicitly in dump()
/frameworks/base/services/tests/InputMethodSystemServerTests/src/com/android/server/inputmethod/
DImeVisibilityStateComputerTest.java107 assertThat(mComputer.mRequestedShowExplicitly).isFalse(); in testRequestImeVisibility_showImplicit()
122 assertThat(mComputer.mRequestedShowExplicitly).isTrue(); in testRequestImeVisibility_showExplicit()
133 assertThat(mComputer.mRequestedShowExplicitly).isTrue(); in testRequestImeVisibility_showExplicit_thenShowImplicit()
136 assertThat(mComputer.mRequestedShowExplicitly).isTrue(); in testRequestImeVisibility_showExplicit_thenShowImplicit()
169 assertThat(mComputer.mRequestedShowExplicitly).isFalse(); in testRequestImeVisibility_showImplicit_a11yNoImePolicy()
188 assertThat(mComputer.mRequestedShowExplicitly).isFalse(); in testRequestImeVisibility_showImplicit_imeHiddenPolicy()