Searched defs:mLayoutAlgorithm (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackViewScroller.java35 TaskStackViewLayoutAlgorithm mLayoutAlgorithm; field in class:TaskStackViewScroller
47 mLayoutAlgorithm = layoutAlgorithm;
85 setStackScroll(getBoundedStackScroll(mLayoutAlgorithm.mInitialScrollP));
102 return Math.max(mLayoutAlgorithm.mMinScrollP, Math.min(mLayoutAlgorithm.mMaxScrollP, scroll));
107 if (scroll < mLayoutAlgorithm.mMinScrollP) {
108 return Math.abs(scroll - mLayoutAlgorithm.mMinScrollP);
109 } else if (scroll > mLayoutAlgorithm.mMaxScrollP) {
110 return Math.abs(scroll - mLayoutAlgorithm.mMaxScrollP);
171 return (int) (p * mLayoutAlgorithm
[all...]
H A DRecentsView.java77 RecentsViewLayoutAlgorithm mLayoutAlgorithm; field in class:RecentsView
100 mLayoutAlgorithm = new RecentsViewLayoutAlgorithm(mConfig);
340 List<Rect> stackViewsBounds = mLayoutAlgorithm.computeStackRects(stackViews,
H A DTaskStackView.java74 TaskStackViewLayoutAlgorithm mLayoutAlgorithm; field in class:TaskStackView
123 mLayoutAlgorithm = new TaskStackViewLayoutAlgorithm(mConfig);
125 mStackScroller = new TaskStackViewScroller(context, mConfig, mLayoutAlgorithm);
263 return mLayoutAlgorithm;
293 TaskViewTransform transform = mLayoutAlgorithm.getStackTransform(tasks.get(i),
314 mLayoutAlgorithm.mViewRect.bottom);
392 mLayoutAlgorithm.getStackTransform(0f, 0f, mTmpTransform, null);
394 mLayoutAlgorithm.getStackTransform(1f, 0f, mTmpTransform, null);
489 mLayoutAlgorithm.computeMinMaxScroll(mStack.getTasks(), launchedWithAltTab, launchedFromHome);
526 float newScroll = mLayoutAlgorithm
[all...]

Completed in 53 milliseconds