/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/ |
D | PinnedStackListenerForwarder.java | 69 private void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument 71 listener.onImeVisibilityChanged(imeVisible, imeHeight); in onImeVisibilityChanged() 103 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument 105 PinnedStackListenerForwarder.this.onImeVisibilityChanged(imeVisible, imeHeight); in onImeVisibilityChanged() 138 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) {} in onImeVisibilityChanged() argument
|
D | PipBoundsState.java | 331 public void setImeVisibility(boolean imeShowing, int imeHeight) { in setImeVisibility() argument 333 mImeHeight = imeHeight; in setImeVisibility()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | PinnedTaskController.java | 347 void setAdjustedForIme(boolean adjustedForIme, int imeHeight) { in setAdjustedForIme() argument 352 final boolean imeShowing = adjustedForIme && imeHeight > 0; in setAdjustedForIme() 353 imeHeight = imeShowing ? imeHeight : 0; in setAdjustedForIme() 354 if (imeShowing == mIsImeShowing && imeHeight == mImeHeight) { in setAdjustedForIme() 359 mImeHeight = imeHeight; in setAdjustedForIme() 360 notifyImeVisibilityChanged(imeShowing, imeHeight); in setAdjustedForIme() 396 private void notifyImeVisibilityChanged(boolean imeVisible, int imeHeight) { in notifyImeVisibilityChanged() argument 399 mPinnedTaskListener.onImeVisibilityChanged(imeVisible, imeHeight); in notifyImeVisibilityChanged()
|
D | DisplayContent.java | 3043 final int imeHeight = getInputMethodWindowVisibleHeight(); in adjustForImeIfNeeded() local 3044 mPinnedTaskController.setAdjustedForIme(imeVisible, imeHeight); in adjustForImeIfNeeded()
|
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/pip/ |
D | PipBoundsAlgorithmTest.java | 168 final int imeHeight = 30; in getDefaultBounds_imeShowing_offsetByImeHeight() local 172 mPipBoundsState.setImeVisibility(true, imeHeight); in getDefaultBounds_imeShowing_offsetByImeHeight() 175 assertEquals(imeHeight, defaultBounds.top - defaultBoundsWithIme.top); in getDefaultBounds_imeShowing_offsetByImeHeight() 192 final int imeHeight = 30; in getDefaultBounds_imeAndShelfShowing_offsetByTallest() local 198 mPipBoundsState.setImeVisibility(true, imeHeight); in getDefaultBounds_imeAndShelfShowing_offsetByTallest() 382 final int imeHeight = 100; in onImeVisibilityChanged_offsetBounds() local 386 mPipBoundsState.setImeVisibility(true, imeHeight); in onImeVisibilityChanged_offsetBounds() 389 oldPosition.offset(0, -imeHeight); in onImeVisibilityChanged_offsetBounds()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/tv/ |
D | TvPipController.java | 382 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in registerWmShellPinnedStackListener() 385 + ", height=" + imeHeight); in registerWmShellPinnedStackListener() 389 && (!imeVisible || imeHeight == mPipBoundsState.getImeHeight())) { in registerWmShellPinnedStackListener() 394 mPipBoundsState.setImeVisibility(imeVisible, imeHeight); in registerWmShellPinnedStackListener()
|
/frameworks/base/core/java/android/view/ |
D | IPinnedTaskListener.aidl | 44 void onImeVisibilityChanged(boolean imeVisible, int imeHeight); in onImeVisibilityChanged() argument
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/ |
D | PipController.java | 210 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument 211 mPipBoundsState.setImeVisibility(imeVisible, imeHeight); in onImeVisibilityChanged() 212 mTouchHandler.onImeVisibilityChanged(imeVisible, imeHeight); in onImeVisibilityChanged()
|
D | PipTouchHandler.java | 325 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument 327 mImeHeight = imeHeight; in onImeVisibilityChanged()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/animation/ |
D | StackAnimationController.java | 528 public void setImeHeight(int imeHeight) { 529 mImeHeight = imeHeight;
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
D | BubbleController.java | 1368 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument 1370 mStackView.onImeVisibilityChanged(imeVisible, imeHeight); in onImeVisibilityChanged()
|