Home
last modified time | relevance | path

Searched refs:shelfHeight (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/
DPipBoundsHandler.java147 public boolean setShelfHeight(boolean shelfVisible, int shelfHeight) { in setShelfHeight() argument
148 final boolean shelfShowing = shelfVisible && shelfHeight > 0; in setShelfHeight()
149 if (shelfShowing == mIsShelfShowing && shelfHeight == mShelfHeight) { in setShelfHeight()
154 mShelfHeight = shelfHeight; in setShelfHeight()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/pip/
DPipBoundsHandlerTest.java232 final int shelfHeight = 100; in setShelfHeight_offsetBounds() local
236 mPipBoundsHandler.setShelfHeight(true, shelfHeight); in setShelfHeight_offsetBounds()
240 oldPosition.offset(0, -shelfHeight); in setShelfHeight_offsetBounds()
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/
DISystemUiProxy.aidl122 void setShelfHeight(boolean visible, int shelfHeight) = 20; in setShelfHeight() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
DPipManager.java334 final int shelfHeight = visible ? height : 0; in setShelfHeight() local
335 final boolean changed = mPipBoundsHandler.setShelfHeight(visible, shelfHeight); in setShelfHeight()
337 mTouchHandler.onShelfVisibilityChanged(visible, shelfHeight); in setShelfHeight()
DPipTouchHandler.java419 public void onShelfVisibilityChanged(boolean shelfVisible, int shelfHeight) { in onShelfVisibilityChanged() argument
421 mShelfHeight = shelfHeight; in onShelfVisibilityChanged()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithm.java720 int shelfHeight = ambientState.getShelf() == null ? 0 : in updateChildZValue() local
723 - shelfHeight + ambientState.getTopPadding() in updateChildZValue()
730 float factor = (notificationEnd - shelfStart) / shelfHeight; in updateChildZValue()
DNotificationStackScrollLayout.java3001 int shelfHeight = 0;
3003 shelfHeight = mShelf.getIntrinsicHeight();
3005 return mIntrinsicPadding + firstChildMinHeight + shelfHeight;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
DOverviewProxyService.java374 public void setShelfHeight(boolean visible, int shelfHeight) {
380 mPipUI.setShelfHeight(visible, shelfHeight);