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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackViewScroller.java71 TaskStackLayoutAlgorithm mLayoutAlgorithm; field in class:TaskStackViewScroller
95 mLayoutAlgorithm = layoutAlgorithm;
127 float newScroll = mLayoutAlgorithm.updateFocusStateOnScroll(downP + mLastDeltaP, targetScroll,
152 setStackScroll(mLayoutAlgorithm.mInitialScrollP);
183 return Utilities.clamp(scroll, mLayoutAlgorithm.mMinScrollP, mLayoutAlgorithm.mMaxScrollP);
188 if (scroll < mLayoutAlgorithm.mMinScrollP) {
189 return Math.abs(scroll - mLayoutAlgorithm.mMinScrollP);
190 } else if (scroll > mLayoutAlgorithm.mMaxScrollP) {
191 return Math.abs(scroll - mLayoutAlgorithm
[all...]
H A DTaskStackView.java149 TaskStackLayoutAlgorithm mLayoutAlgorithm; field in class:TaskStackView
251 return mLayoutAlgorithm.mFreeformRect.contains(x, y);
264 return mLayoutAlgorithm.mStackRect.contains(x, y);
279 mLayoutAlgorithm = new TaskStackLayoutAlgorithm(context, this);
281 mStackScroller = new TaskStackViewScroller(context, this, mLayoutAlgorithm);
296 mLayoutAlgorithm.mTaskGridLayoutAlgorithm);
365 int ffBgAlpha = mLayoutAlgorithm.getStackState().freeformBackgroundAlpha;
371 mLayoutAlgorithm.reset();
387 boolean isInitialized = mLayoutAlgorithm.isInitialized();
404 mLayoutAlgorithm
[all...]

Completed in 46 milliseconds