Home
last modified time | relevance | path

Searched refs:expandedHeight (Results 1 – 10 of 10) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DHeadsUpAppearanceControllerTest.java167 float expandedHeight = 400f; in constructor_animationValuesUpdated() local
169 when(mStackScrollerController.getExpandedHeight()).thenReturn(expandedHeight); in constructor_animationValuesUpdated()
186 Assert.assertEquals(expandedHeight, newController.mExpandedHeight, 0.0f); in constructor_animationValuesUpdated()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotificationBlockingHelperManager.java165 public void setNotificationShadeExpanded(float expandedHeight) { in setNotificationShadeExpanded() argument
166 mIsShadeExpanded = expandedHeight > 0.0f; in setNotificationShadeExpanded()
/aosp12/build/make/tools/droiddoc/templates-pdk/assets/design/
H A Ddefault.js109 var expandedHeight = $ul.height();
116 .css('height', expandedHeight + 'px');
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DHeadsUpAppearanceController.java351 public void setAppearFraction(float expandedHeight, float appearFraction) { in setAppearFraction() argument
352 boolean changed = expandedHeight != mExpandedHeight; in setAppearFraction()
355 mExpandedHeight = expandedHeight; in setAppearFraction()
H A DPanelViewController.java362 float expandedHeight) { in startExpandMotion() argument
366 mInitialOffsetOnTouch = expandedHeight; in startExpandMotion()
805 protected abstract void onHeightUpdated(float expandedHeight); in onHeightUpdated() argument
H A DNotificationPanelViewController.java2833 protected void onHeightUpdated(float expandedHeight) { in onHeightUpdated() argument
2851 t = expandedHeight / (getMaxPanelHeight()); in onHeightUpdated()
2861 (expandedHeight - panelHeightQsCollapsed) / (panelHeightQsExpanded in onHeightUpdated()
2869 updateExpandedHeight(expandedHeight); in onHeightUpdated()
3332 protected void updateExpandedHeight(float expandedHeight) { in updateExpandedHeight() argument
3339 expandedHeight = getMaxPanelHeight(); in updateExpandedHeight()
3341 mNotificationStackScrollLayoutController.setExpandedHeight(expandedHeight); in updateExpandedHeight()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationRoundnessManager.java211 public void setExpanded(float expandedHeight, float appearFraction) { in setExpanded() argument
212 mExpanded = expandedHeight != 0.0f; in setExpanded()
H A DNotificationStackScrollLayoutController.java1221 public void setExpandedHeight(float expandedHeight) { in setExpandedHeight() argument
1222 mView.setExpandedHeight(expandedHeight); in setExpandedHeight()
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
H A DTaskbarViewController.java215 int expandedHeight = Math.max(collapsedHeight, in createIconAlignmentController() local
218 anim.getAnimatedFraction() > 0 ? expandedHeight : collapsedHeight)); in createIconAlignmentController()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutTest.java254 mStackScroller.addOnExpandedHeightChangedListener((expandedHeight, appear) -> { in testSetExpandedHeight_withSplitShade_doesntInterpolateStackHeight()