/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/ |
D | PinnedStackListenerForwarder.java | 67 private void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument 69 listener.onImeVisibilityChanged(imeVisible, imeHeight); in onImeVisibilityChanged() 89 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument 91 PinnedStackListenerForwarder.this.onImeVisibilityChanged(imeVisible, imeHeight); in onImeVisibilityChanged() 110 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) {} in onImeVisibilityChanged() argument
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | PinnedTaskController.java | 344 void setAdjustedForIme(boolean adjustedForIme, int imeHeight) { in setAdjustedForIme() argument 349 final boolean imeShowing = adjustedForIme && imeHeight > 0; in setAdjustedForIme() 350 imeHeight = imeShowing ? imeHeight : 0; in setAdjustedForIme() 351 if (imeShowing == mIsImeShowing && imeHeight == mImeHeight) { in setAdjustedForIme() 356 mImeHeight = imeHeight; in setAdjustedForIme() 357 notifyImeVisibilityChanged(imeShowing, imeHeight); in setAdjustedForIme() 364 private void notifyImeVisibilityChanged(boolean imeVisible, int imeHeight) { in notifyImeVisibilityChanged() argument 367 mPinnedTaskListener.onImeVisibilityChanged(imeVisible, imeHeight); in notifyImeVisibilityChanged()
|
D | DisplayContent.java | 3397 final int imeHeight = getInputMethodWindowVisibleHeight(); in adjustForImeIfNeeded() local 3398 mPinnedTaskController.setAdjustedForIme(imeVisible, imeHeight); in adjustForImeIfNeeded()
|
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/pip/ |
D | PipBoundsAlgorithmTest.java | 187 final int imeHeight = 30; in getDefaultBounds_imeShowing_offsetByImeHeight() local 191 mPipBoundsState.setImeVisibility(true, imeHeight); in getDefaultBounds_imeShowing_offsetByImeHeight() 194 assertEquals(imeHeight, defaultBounds.top - defaultBoundsWithIme.top); in getDefaultBounds_imeShowing_offsetByImeHeight() 211 final int imeHeight = 30; in getDefaultBounds_imeAndShelfShowing_offsetByTallest() local 217 mPipBoundsState.setImeVisibility(true, imeHeight); in getDefaultBounds_imeAndShelfShowing_offsetByTallest() 403 final int imeHeight = 100; in onImeVisibilityChanged_offsetBounds() local 407 mPipBoundsState.setImeVisibility(true, imeHeight); in onImeVisibilityChanged_offsetBounds() 410 oldPosition.offset(0, -imeHeight); in onImeVisibilityChanged_offsetBounds()
|
/frameworks/base/core/java/android/view/ |
D | ImeBackAnimationController.java | 153 float imeHeight = shownY - hiddenY; in setPreCommitProgress() local 155 int newY = (int) (imeHeight - interpolatedProgress * (imeHeight * PEEK_FRACTION)); in setPreCommitProgress()
|
D | IPinnedTaskListener.aidl | 44 void onImeVisibilityChanged(boolean imeVisible, int imeHeight); in onImeVisibilityChanged() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/ |
D | MenuViewAppearance.java | 161 final int imeHeight = (int) (draggableBounds.bottom - mImeTop); in getMenuDraggableBoundsWith() local 162 draggableBounds.bottom -= (imeHeight + mImeShiftingSpace); in getMenuDraggableBoundsWith()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/tv/ |
D | TvPipController.java | 663 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in registerWmShellPinnedStackListener() 666 TAG, imeVisible, imeHeight); in registerWmShellPinnedStackListener() 669 && (!imeVisible || imeHeight == mTvPipBoundsState.getImeHeight())) { in registerWmShellPinnedStackListener() 674 mTvPipBoundsState.setImeVisibility(imeVisible, imeHeight); in registerWmShellPinnedStackListener()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/pip/ |
D | PipBoundsState.java | 389 public void setImeVisibility(boolean imeShowing, int imeHeight) { in setImeVisibility() argument 391 mImeHeight = imeHeight; in setImeVisibility()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
D | BubblePositioner.java | 794 final int imeHeight = getImeHeight(); in getAllowableStackPositionRegion() local 801 allowableRegion.bottom -= imeHeight + bottomPadding + mBubbleSize; in getAllowableStackPositionRegion()
|
D | BubbleController.java | 2374 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument 2375 mBubblePositioner.setImeVisible(imeVisible, imeHeight); in onImeVisibilityChanged()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/ |
D | PipController.java | 356 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument 357 mPipBoundsState.setImeVisibility(imeVisible, imeHeight); in onImeVisibilityChanged() 358 mTouchHandler.onImeVisibilityChanged(imeVisible, imeHeight); in onImeVisibilityChanged()
|
D | PipTouchHandler.java | 347 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument 349 mImeHeight = imeHeight; in onImeVisibilityChanged()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip2/phone/ |
D | PipTouchHandler.java | 356 void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument 358 mImeHeight = imeHeight; in onImeVisibilityChanged()
|