Searched refs:algorithmState (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | StackScrollAlgorithm.java | 119 StackScrollAlgorithmState algorithmState = mTempAlgorithmState; in resetViewStates() local 123 initAlgorithmState(algorithmState, ambientState); in resetViewStates() 124 updatePositionsForState(algorithmState, ambientState); in resetViewStates() 125 updateZValuesForState(algorithmState, ambientState); in resetViewStates() 126 updateHeadsUpStates(algorithmState, ambientState); in resetViewStates() 127 updatePulsingStates(algorithmState, ambientState); in resetViewStates() 129 updateDimmedActivatedHideSensitive(ambientState, algorithmState); in resetViewStates() 130 updateClipping(algorithmState, ambientState); in resetViewStates() 131 updateSpeedBumpState(algorithmState, speedBumpIndex); in resetViewStates() 132 updateShelfState(algorithmState, ambientState); in resetViewStates() [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/ |
D | StackScrollAlgorithmTest.kt | 573 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>() constant 574 algorithmState.visibleChildren.add(childHunView) in <lambda>() 580 /* StackScrollAlgorithmState= */ algorithmState, in <lambda>() 603 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>() constant 604 algorithmState.visibleChildren.add(childHunView) in <lambda>() 610 /* StackScrollAlgorithmState= */ algorithmState, in <lambda>() 638 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>() constant 639 algorithmState.visibleChildren.add(childHunView) in <lambda>() 645 /* StackScrollAlgorithmState= */ algorithmState, in <lambda>() 669 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>() constant [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationShelfController.java | 112 public void updateState(StackScrollAlgorithm.StackScrollAlgorithmState algorithmState, in updateState() argument 115 mView.updateState(algorithmState, ambientState); in updateState()
|
D | NotificationShelf.java | 205 public void updateState(StackScrollAlgorithm.StackScrollAlgorithmState algorithmState, in updateState() argument 239 viewState.firstViewInShelf = algorithmState.firstViewInShelf; in updateState() 245 || algorithmState.firstViewInShelf == null; in updateState() 247 final int indexOfFirstViewInShelf = algorithmState.visibleChildren.indexOf( in updateState() 248 algorithmState.firstViewInShelf); in updateState() 251 && algorithmState.firstViewInShelf != null in updateState() 255 final ExpandableView viewBeforeShelf = algorithmState.visibleChildren.get( in updateState()
|