OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mTmpRect2
(Results
1 - 7
of
7
) sorted by null
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
WindowManagerProxy.java
50
private final Rect
mTmpRect2
= new Rect();
69
mTmpRect2
.set(mTempDockedTaskRect);
77
mTmpRect2
.isEmpty() ? null :
mTmpRect2
,
/frameworks/base/services/core/java/com/android/server/wm/
Task.java
87
private Rect
mTmpRect2
= new Rect();
344
getBounds(
mTmpRect2
);
346
int offsetY = adjustedBounds.bottom -
mTmpRect2
.bottom;
347
mTmpRect2
.offset(0, offsetY);
349
mTmpRect2
.offsetTo(adjustedBounds.left, adjustedBounds.top);
352
resizeLocked(
mTmpRect2
, mOverrideConfig, false /* forced */);
590
mTmpRect2
.set(mPreScrollBounds);
593
setBounds(
mTmpRect2
, mOverrideConfig);
597
displayContent.rotateBounds(mRotation, newRotation,
mTmpRect2
);
598
if (setBounds(
mTmpRect2
, mOverrideConfig) != BOUNDS_CHANGE_NONE)
[
all
...]
TaskStack.java
80
private Rect
mTmpRect2
= new Rect();
260
task.getBounds(
mTmpRect2
);
261
task.scrollLocked(
mTmpRect2
);
366
mTmpRect2
.set(mBounds);
370
setBounds(
mTmpRect2
);
402
mTmpRect2
.set(mBounds);
403
mDisplayContent.rotateBounds(mRotation, newRotation,
mTmpRect2
);
405
repositionDockedStackAfterRotation(
mTmpRect2
);
406
snapDockedStackAfterRotation(
mTmpRect2
);
407
final int newDockSide = getDockSide(
mTmpRect2
);
[
all
...]
DisplayContent.java
102
private final Rect
mTmpRect2
= new Rect();
395
mTmpRect2
.set(mTmpRect);
424
mTouchExcludeRegion.op(
mTmpRect2
, Region.Op.UNION);
537
mTmpRect2
.set(bounds);
540
mTmpRect2
.top = mTmpRect.bottom - bounds.right;
541
mTmpRect2
.left = bounds.top;
542
mTmpRect2
.right =
mTmpRect2
.left + bounds.height();
543
mTmpRect2
.bottom =
mTmpRect2
.top + bounds.width()
[
all
...]
DockedStackDividerController.java
107
private final Rect
mTmpRect2
= new Rect();
167
mTmpRect2
.set(0, 0,
170
final int orientation =
mTmpRect2
.width() <=
mTmpRect2
.height()
173
final int dockSide = TaskStack.getDockSideUnchecked(mTmpRect,
mTmpRect2
, orientation);
182
mTmpRect2
.width(),
mTmpRect2
.height(), getContentWidth());
183
mService.mPolicy.getStableInsetsLw(rotation,
mTmpRect2
.width(),
mTmpRect2
.height(),
185
mService.subtractInsets(
mTmpRect2
, mTmpRect3, mTmpRect)
[
all
...]
WindowManagerService.java
523
final Rect
mTmpRect2
= new Rect();
[
all
...]
/frameworks/base/services/core/java/com/android/server/am/
TaskRecord.java
256
private final Rect
mTmpRect2
= new Rect();
[
all
...]
Completed in 92 milliseconds