Home
last modified time | relevance | path

Searched refs:computeExpansionFraction (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
H A DQuickSettingsController.java1006 final float qsExpansionFraction = computeExpansionFraction(); in updateExpansion()
1008 ? 1f : computeExpansionFraction(); in updateExpansion()
1055 : computeExpansionFraction(); in getLockscreenShadeDragProgress()
1081 public float computeExpansionFraction() { in computeExpansionFraction() method in QuickSettingsController
1139 float qsExpansionFraction = computeExpansionFraction(); in setClippingBounds()
1394 (float) (getMaxExpansionHeight()), computeExpansionFraction()); in calculateNotificationsTopPadding()
1617 && computeExpansionFraction() <= 0.01 && mShadeExpandedFraction < 1.0) { in handleTouch()
1731 float fraction = computeExpansionFraction(); in onTouch()
1763 float qsExpansionFraction = computeExpansionFraction(); in onIntercept()
1972 computeExpansionFraction() == 0.0f && target == 0; in flingQs()
H A DNotificationPanelViewController.java1620 mQsController.computeExpansionFraction(), in updateClockAppearance()
2189 return mQsController.computeExpansionFraction() > 0.5f; in flingExpandsQs()
2649 float alpha = Math.min(expansionAlpha, 1 - mQsController.computeExpansionFraction()); in updateKeyguardBottomAreaAlpha()
3985 return mQsController.computeExpansionFraction() == 1; in isShadeFullyExpanded()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/
H A DQuickSettingsControllerTest.java299 assertThat(mQsController.computeExpansionFraction()).isEqualTo(1f); in shadeExpanded_onKeyguard()