Home
last modified time | relevance | path

Searched refs:targetStackScroll (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DTaskStackLayoutAlgorithm.java621 public float updateFocusStateOnScroll(float lastTargetStackScroll, float targetStackScroll, in updateFocusStateOnScroll() argument
623 if (targetStackScroll == lastStackScroll || Recents.getConfiguration().isLowRamDevice) { in updateFocusStateOnScroll()
624 return targetStackScroll; in updateFocusStateOnScroll()
627 float deltaScroll = targetStackScroll - lastStackScroll; in updateFocusStateOnScroll()
628 float deltaTargetScroll = targetStackScroll - lastTargetStackScroll; in updateFocusStateOnScroll()
629 float newScroll = targetStackScroll; in updateFocusStateOnScroll()
630 mUnfocusedRange.offset(targetStackScroll); in updateFocusStateOnScroll()
DTaskStackView.java470 ArrayList<Task> tasks, float curStackScroll, float targetStackScroll, in computeVisibleTaskTransforms() argument
476 boolean useTargetStackScroll = Float.compare(curStackScroll, targetStackScroll) != 0; in computeVisibleTaskTransforms()
496 transformAtTarget = mLayoutAlgorithm.getStackTransform(task, targetStackScroll, in computeVisibleTaskTransforms()
524 void bindVisibleTaskViews(float targetStackScroll) { in bindVisibleTaskViews() argument
525 bindVisibleTaskViews(targetStackScroll, false /* ignoreTaskOverrides */); in bindVisibleTaskViews()
541 void bindVisibleTaskViews(float targetStackScroll, boolean ignoreTaskOverrides) { in bindVisibleTaskViews() argument
545 mStackScroller.getStackScroll(), targetStackScroll, mIgnoreTasks, in bindVisibleTaskViews()