/aosp14/frameworks/base/tests/InputMethodStressTest/src/com/android/inputmethod/stresstest/ |
H A D | AutoShowTest.java | 328 int softInputMode = activity.getWindow().getAttributes().softInputMode; in verifyAutoShowBehavior_forwardWithKeyboardOff() local 329 int softInputVisibility = softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE; in verifyAutoShowBehavior_forwardWithKeyboardOff() 330 int softInputAdjustment = softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST; in verifyAutoShowBehavior_forwardWithKeyboardOff() 371 int softInputMode = activity.getWindow().getAttributes().softInputMode; in verifyAutoShowBehavior_forwardWithKeyboardOn() local 372 int softInputVisibility = softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE; in verifyAutoShowBehavior_forwardWithKeyboardOn() 373 int softInputAdjustment = softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST; in verifyAutoShowBehavior_forwardWithKeyboardOn() 435 int softInputMode = activity.getWindow().getAttributes().softInputMode; in verifyAutoShowBehavior_backwardWithKeyboardOff() local 436 int softInputVisibility = softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE; in verifyAutoShowBehavior_backwardWithKeyboardOff() 452 int softInputMode = activity.getWindow().getAttributes().softInputMode; in verifyAutoShowBehavior_backwardWithKeyboardOn() local 453 int softInputVisibility = softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE; in verifyAutoShowBehavior_backwardWithKeyboardOn()
|
H A D | ImeOpenCloseStressTest.java | 551 int softInputMode = newActivity.getWindow().getAttributes().softInputMode; in verifyRotateBehavior() local 552 int softInputVisibility = softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE; in verifyRotateBehavior()
|
/aosp14/frameworks/base/services/core/java/com/android/server/pm/pkg/component/ |
H A D | ParsedActivityImpl.java | 79 private int softInputMode; field in ParsedActivityImpl 115 this.softInputMode = other.softInputMode; in ParsedActivityImpl() 150 activity.softInputMode = 0; in makeAppDetailsActivity() 184 alias.softInputMode = target.getSoftInputMode(); in makeAlias() 304 dest.writeInt(this.softInputMode); in writeToParcel() 343 this.softInputMode = in.readInt(); in ParsedActivityImpl() 405 int softInputMode, in ParsedActivityImpl() argument 430 this.softInputMode = softInputMode; in ParsedActivityImpl() 504 return softInputMode; in getSoftInputMode() 623 softInputMode = value; in setSoftInputMode()
|
/aosp14/frameworks/base/core/java/com/android/internal/inputmethod/ |
H A D | InputMethodDebug.java | 108 public static String softInputModeToString(@SoftInputModeFlags int softInputMode) { in softInputModeToString() argument 110 final int state = softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE; in softInputModeToString() 111 final int adjust = softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST; in softInputModeToString() 113 (softInputMode & WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0; in softInputModeToString()
|
/aosp14/frameworks/base/core/java/android/view/inputmethod/ |
H A D | ViewFocusParameterInfo.java | 54 @SoftInputModeFlags int softInputMode, in sameAs() argument 58 && mPreviousSoftInputMode == softInputMode in sameAs()
|
H A D | InputMethodManager.java | 798 final int softInputMode = windowAttribute.softInputMode; in onPostWindowGainedFocus() local 827 viewForWindowFocus, startInputFlags, softInputMode, windowFlags)) { in onPostWindowGainedFocus() 964 @SoftInputModeFlags int softInputMode, int windowFlags) { in startInputOnWindowFocusGainInternal() argument 972 softInputMode, windowFlags); in startInputOnWindowFocusGainInternal() 2675 @SoftInputModeFlags int softInputMode, int windowFlags) { in startInputInner() argument 2720 softInputMode = view.getViewRootImpl().mWindowAttributes.softInputMode; in startInputInner() 2812 startInputReason, softInputMode, windowFlags); in startInputInner() 2814 startInputFlags, startInputReason, softInputMode, windowFlags); in startInputInner() 2826 softInputMode, windowFlags, editorInfo, servedInputConnection, in startInputInner() 2898 @SoftInputModeFlags int softInputMode, in isSwitchingBetweenEquivalentNonEditableViews() argument [all …]
|
H A D | IInputMethodManagerGlobalInvoker.java | 335 @WindowManager.LayoutParams.SoftInputModeFlags int softInputMode, in startInputOrWindowGainedFocus() argument 347 startInputFlags, softInputMode, windowFlags, editorInfo, remoteInputConnection, in startInputOrWindowGainedFocus()
|
/aosp14/frameworks/base/services/tests/InputMethodSystemServerTests/src/com/android/server/inputmethod/ |
H A D | InputMethodManagerServiceWindowGainedFocusTest.java | 242 int softInputMode = mSoftInputState | mSoftInputAdjustment; in startInputOrWindowGainedFocus() local 244 softInputMode |= SOFT_INPUT_IS_FORWARD_NAVIGATION; in startInputOrWindowGainedFocus() 259 softInputMode /* softInputMode */, in startInputOrWindowGainedFocus()
|
H A D | DefaultImeVisibilityApplierTest.java | 192 private InputBindResult startInputOrWindowGainedFocus(IBinder windowToken, int softInputMode) { in startInputOrWindowGainedFocus() argument 198 softInputMode /* softInputMode */, in startInputOrWindowGainedFocus()
|
/aosp14/frameworks/base/core/java/android/content/pm/ |
H A D | ActivityInfo.java | 1475 public int softInputMode; field in ActivityInfo 1561 softInputMode = orig.softInputMode; in ActivityInfo() 1895 || configChanges != 0 || softInputMode != 0) { in dump() 1898 + " softInputMode=0x" + Integer.toHexString(softInputMode)); in dump() 1958 dest.writeInt(softInputMode); in writeToParcel() 2084 softInputMode = source.readInt(); in ActivityInfo()
|
/aosp14/frameworks/base/tests/FlickerTests/test-apps/flickerapp/src/com/android/server/wm/flicker/testapp/ |
H A D | ImeEditorPopupDialogActivity.java | 35 p.softInputMode = SOFT_INPUT_STATE_ALWAYS_HIDDEN; in onCreate()
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | WindowManager.java | 3631 public int softInputMode; field in WindowManager.LayoutParams 4808 out.writeInt(softInputMode); in writeToParcel() 4880 softInputMode = in.readInt(); in LayoutParams() 5039 if (softInputMode != o.softInputMode) { in copyFrom() 5040 softInputMode = o.softInputMode; in copyFrom() 5330 if (softInputMode != 0) { in toString() 5332 sb.append(softInputModeToString(softInputMode)); in toString() 5507 proto.write(SOFT_INPUT_MODE, softInputMode); in dumpDebug() 5623 final int state = softInputMode & SOFT_INPUT_MASK_STATE; in softInputModeToString() 5648 final int adjust = softInputMode & SOFT_INPUT_MASK_ADJUST; in softInputModeToString() [all …]
|
H A D | ImeFocusController.java | 107 windowAttribute.softInputMode)); in onPostWindowFocus()
|
H A D | InsetsState.java | 298 @SoftInputModeFlags int softInputMode, int windowFlags) { in calculateVisibleInsets() argument 299 final int softInputAdjustMode = softInputMode & SOFT_INPUT_MASK_ADJUST; in calculateVisibleInsets()
|
H A D | ViewRootImpl.java | 1442 mSoftInputMode = attrs.softInputMode; 1920 final int oldSoftInputMode = mWindowAttributes.softInputMode; 1986 mSoftInputMode = attrs.softInputMode; 1991 if ((attrs.softInputMode & SOFT_INPUT_MASK_ADJUST) 1993 mWindowAttributes.softInputMode = (mWindowAttributes.softInputMode 1997 if (mWindowAttributes.softInputMode != oldSoftInputMode) { 2232 && (mWindowAttributes.softInputMode & SOFT_INPUT_MASK_ADJUST) in notifyInsetsChanged() 2792 final int adjust = inOutParams.softInputMode & SOFT_INPUT_MASK_ADJUST; in adjustLayoutParamsForCompatibility() 3298 lp.softInputMode = (lp.softInputMode & ~SOFT_INPUT_MASK_ADJUST) | resizeMode; in performTraversals() 4169 mWindowAttributes.softInputMode &= in handleWindowFocusChanged() [all …]
|
H A D | InsetsController.java | 993 @SoftInputModeFlags int softInputMode, int windowFlags) { in calculateVisibleInsets() argument 994 return mState.calculateVisibleInsets(mFrame, windowType, activityType, softInputMode, in calculateVisibleInsets()
|
H A D | Window.java | 1211 attrs.softInputMode = mode; in setSoftInputMode()
|
/aosp14/frameworks/base/services/core/java/com/android/server/inputmethod/ |
H A D | ImeVisibilityStateComputer.java | 563 final int softInputMode = state.getSoftInputModeState(); in shouldRestoreImeVisibility() local 564 switch (softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) { in shouldRestoreImeVisibility() 568 if ((softInputMode & SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) { in shouldRestoreImeVisibility()
|
H A D | InputMethodManagerService.java | 892 @SoftInputModeFlags int softInputMode, @SoftInputShowHideReason int reason, in Entry() argument 899 mFocusedWindowSoftInputMode = softInputMode; in Entry() 3737 @StartInputFlags int startInputFlags, @SoftInputModeFlags int softInputMode, in startInputOrWindowGainedFocus() argument 3768 client, windowToken, startInputFlags, softInputMode, windowFlags, in startInputOrWindowGainedFocus() 3795 @SoftInputModeFlags int softInputMode, int windowFlags, EditorInfo editorInfo, in startInputOrWindowGainedFocusInternalLocked() argument 3808 + " softInputMode=" + InputMethodDebug.softInputModeToString(softInputMode) in startInputOrWindowGainedFocusInternalLocked() 3903 softInputMode, windowFlags, !sameWindowFocused, isTextEditor, in startInputOrWindowGainedFocusInternalLocked() 3925 mCurFocusedWindowSoftInputMode = softInputMode; in startInputOrWindowGainedFocusInternalLocked()
|
/aosp14/frameworks/base/core/java/com/android/internal/view/ |
H A D | IInputMethodManager.aidl | 79 /* @android.view.WindowManager.LayoutParams.SoftInputModeFlags */ int softInputMode, in startInputOrWindowGainedFocus() argument
|
/aosp14/frameworks/base/core/java/android/app/ |
H A D | Dialog.java | 345 if ((l.softInputMode in show() 347 l.softInputMode |= in show() 354 l.softInputMode &= in show()
|
H A D | SearchDialog.java | 156 lp.softInputMode = WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE; in onCreate()
|
/aosp14/frameworks/base/services/core/java/com/android/server/ |
H A D | EventLogTags.logtags | 189 32001 imf_show_ime (token|3),(window|3),(reason|3),(softInputMode|3) 191 32002 imf_hide_ime (token|3),(window|3),(reason|3),(softInputMode|3)
|
/aosp14/frameworks/base/core/tests/coretests/src/android/view/ |
H A D | ViewRootImplTest.java | 161 attrs.softInputMode |= SOFT_INPUT_ADJUST_RESIZE; in adjustLayoutParamsForCompatibility_fitSystemBarsAndIme()
|
/aosp14/frameworks/base/core/java/android/widget/ |
H A D | PopupWindow.java | 1625 p.softInputMode = mSoftInputMode; in createPopupLayoutParams()
|