HomeSort by relevance Sort by last modified time
    Searched refs:mLayoutAlgorithm (Results 1 - 4 of 4) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackViewScroller.java 65 TaskStackLayoutAlgorithm mLayoutAlgorithm;
84 mLayoutAlgorithm = layoutAlgorithm;
115 float newScroll = mLayoutAlgorithm.updateFocusStateOnScroll(downP + mLastDeltaP, targetScroll,
140 setStackScroll(mLayoutAlgorithm.mInitialScrollP);
171 return Utilities.clamp(scroll, mLayoutAlgorithm.mMinScrollP, mLayoutAlgorithm.mMaxScrollP);
176 if (scroll < mLayoutAlgorithm.mMinScrollP) {
177 return Math.abs(scroll - mLayoutAlgorithm.mMinScrollP);
178 } else if (scroll > mLayoutAlgorithm.mMaxScrollP) {
179 return Math.abs(scroll - mLayoutAlgorithm.mMaxScrollP)
    [all...]
TaskStackView.java 149 TaskStackLayoutAlgorithm mLayoutAlgorithm;
250 return mLayoutAlgorithm.mFreeformRect.contains(x, y);
263 return mLayoutAlgorithm.mStackRect.contains(x, y);
278 mLayoutAlgorithm = new TaskStackLayoutAlgorithm(context, this);
280 mStackScroller = new TaskStackViewScroller(context, this, mLayoutAlgorithm);
294 mLayoutAlgorithm.mTaskGridLayoutAlgorithm);
363 int ffBgAlpha = mLayoutAlgorithm.getStackState().freeformBackgroundAlpha;
369 mLayoutAlgorithm.reset();
385 boolean isInitialized = mLayoutAlgorithm.isInitialized();
402 mLayoutAlgorithm.setTaskOverridesForInitialState(mStack, false /* ignoreScrollToFront */)
    [all...]
TaskStackViewTouchHandler.java 223 final TaskStackLayoutAlgorithm layoutAlgorithm = mSv.mLayoutAlgorithm;
394 if (x > mSv.mLayoutAlgorithm.mStackRect.left && x < mSv.mLayoutAlgorithm.mStackRect.right) {
401 Rect freeformRect = mSv.mLayoutAlgorithm.mFreeformRect;
RecentsView.java 350 Rect buttonBounds = mTaskStackView.mLayoutAlgorithm.getStackActionButtonRect();
    [all...]

Completed in 246 milliseconds