Searched refs:mLayoutAlgorithm (Results 1 – 4 of 4) sorted by relevance
| /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
| D | TaskStackViewScroller.java | 65 TaskStackLayoutAlgorithm mLayoutAlgorithm; field in TaskStackViewScroller 84 mLayoutAlgorithm = layoutAlgorithm; in TaskStackViewScroller() 115 … float newScroll = mLayoutAlgorithm.updateFocusStateOnScroll(downP + mLastDeltaP, targetScroll, in setDeltaStackScroll() 140 setStackScroll(mLayoutAlgorithm.mInitialScrollP); in setStackScrollToInitialState() 171 return Utilities.clamp(scroll, mLayoutAlgorithm.mMinScrollP, mLayoutAlgorithm.mMaxScrollP); in getBoundedStackScroll() 176 if (scroll < mLayoutAlgorithm.mMinScrollP) { in getScrollAmountOutOfBounds() 177 return Math.abs(scroll - mLayoutAlgorithm.mMinScrollP); in getScrollAmountOutOfBounds() 178 } else if (scroll > mLayoutAlgorithm.mMaxScrollP) { in getScrollAmountOutOfBounds() 179 return Math.abs(scroll - mLayoutAlgorithm.mMaxScrollP); in getScrollAmountOutOfBounds() 250 float deltaP = mLayoutAlgorithm.getDeltaPForY(mFlingDownY, mScroller.getCurrY()); in computeScroll()
|
| D | TaskStackView.java | 149 TaskStackLayoutAlgorithm mLayoutAlgorithm; field in TaskStackView 250 return mLayoutAlgorithm.mFreeformRect.contains(x, y); 263 return mLayoutAlgorithm.mStackRect.contains(x, y); 278 mLayoutAlgorithm = new TaskStackLayoutAlgorithm(context, this); in TaskStackView() 280 mStackScroller = new TaskStackViewScroller(context, this, mLayoutAlgorithm); in TaskStackView() 294 mLayoutAlgorithm.mTaskGridLayoutAlgorithm); in TaskStackView() 363 int ffBgAlpha = mLayoutAlgorithm.getStackState().freeformBackgroundAlpha; in onReload() 369 mLayoutAlgorithm.reset(); in onReload() 385 boolean isInitialized = mLayoutAlgorithm.isInitialized(); in setTasks() 402 mLayoutAlgorithm.setTaskOverridesForInitialState(mStack, false /* ignoreScrollToFront */); in updateToInitialState() [all …]
|
| D | TaskStackViewTouchHandler.java | 223 final TaskStackLayoutAlgorithm layoutAlgorithm = mSv.mLayoutAlgorithm; in handleTouchEvent() 394 if (x > mSv.mLayoutAlgorithm.mStackRect.left && x < mSv.mLayoutAlgorithm.mStackRect.right) { in maybeHideRecentsFromBackgroundTap() 401 Rect freeformRect = mSv.mLayoutAlgorithm.mFreeformRect; in maybeHideRecentsFromBackgroundTap()
|
| D | RecentsView.java | 350 Rect buttonBounds = mTaskStackView.mLayoutAlgorithm.getStackActionButtonRect(); in onMeasure() 789 … Rect actionButtonRect = new Rect(mTaskStackView.mLayoutAlgorithm.getStackActionButtonRect()); in getStackActionButtonBoundsFromStackLayout()
|