OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:taskStackBounds
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackLayoutAlgorithm.java
190
* @param
taskStackBounds
the full rect that the freeform rect can take up
193
Rect
taskStackBounds
, int topMargin, int freeformGap, int stackBottomOffset) {
196
int availableHeight =
taskStackBounds
.height() - topMargin - stackBottomOffset;
199
freeformRectOut.set(
taskStackBounds
.left,
200
taskStackBounds
.top + topMargin,
201
taskStackBounds
.right,
202
taskStackBounds
.top + topMargin + ffHeight);
203
stackRectOut.set(
taskStackBounds
.left,
204
taskStackBounds
.top,
205
taskStackBounds
.right
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
TaskStack.java
508
Rect
taskStackBounds
= new Rect();
515
taskStackBounds
);
516
return
taskStackBounds
;
[
all
...]
Completed in 153 milliseconds