Searched defs:mTmpStackBounds (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowStateAnimator.java157 Rect mTmpStackBounds = new Rect(); field in class:WindowStateAnimator
1306 stack.getDimBounds(mTmpStackBounds);
1323 mTmpStackBounds.inset(-surfaceInsets.left, -surfaceInsets.top,
1328 Math.max(mTmpStackBounds.left, frameX + clipRect.left) - frameX);
1330 Math.max(mTmpStackBounds.top, frameY + clipRect.top) - frameY);
1332 Math.min(mTmpStackBounds.right, frameX + clipRect.right) - frameX);
1334 Math.min(mTmpStackBounds.bottom, frameY + clipRect.bottom) - frameY);
1401 task.mStack.getDimBounds(mTmpStackBounds);
1428 float tw = (surfaceContentWidth - mTmpStackBounds.width())
1435 th = (surfaceContentHeight - mTmpStackBounds
[all...]

Completed in 10 milliseconds