Home
last modified time | relevance | path

Searched refs:stackEndHeight (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithmTest.kt488 ambientState.stackEndHeight = 0f // no space for the footer in the stack in <lambda>()
501 ambientState.stackEndHeight = maxPanelHeight // plenty space for the footer in the stack in <lambda>()
515 ambientState.stackEndHeight = maxPanelHeight // plenty space for the footer in the stack in <lambda>()
527 ambientState.stackEndHeight = maxPanelHeight // plenty space for the footer in the stack in <lambda>()
1203 ambientState.stackEndHeight = 100f in <lambda>()
1204 ambientState.stackHeight = ambientState.stackEndHeight * fraction in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DAmbientState.java179 public void setStackEndHeight(float stackEndHeight) { in setStackEndHeight() argument
180 mStackEndHeight = stackEndHeight; in setStackEndHeight()
DStackScrollAlgorithm.java571 final float stackEndHeight = ambientState.getStackEndHeight() - shelfHeight - scrimPadding; in getExpansionFractionWithoutShelf() local
572 if (stackEndHeight == 0f) { in getExpansionFractionWithoutShelf()
577 return stackHeight / stackEndHeight; in getExpansionFractionWithoutShelf()
DNotificationStackScrollLayout.java1461 final float stackEndHeight;
1465 stackEndHeight = mIntrinsicContentHeight;
1467 stackEndHeight = Math.max(0f, height - bottomMargin - topPadding);
1469 mAmbientState.setStackEndHeight(stackEndHeight);
1470 return stackEndHeight;