OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mLayoutAlgorithm
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
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
...]
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
...]
Completed in 87 milliseconds