Lines Matching defs:bounds

3404             Rect bounds, Configuration config) {
3406 + " atoken=" + atoken + " bounds=" + bounds);
3412 Task task = new Task(taskId, stack, userId, this, bounds, config);
4969 public void setDockedStackCreateState(int mode, Rect bounds) {
4971 setDockedStackCreateStateLocked(mode, bounds);
4975 void setDockedStackCreateStateLocked(int mode, Rect bounds) {
4977 mDockedStackCreateBounds = bounds;
4986 * @return The initial bounds the stack was created with. null means fullscreen.
5009 Rect bounds = new Rect();
5010 stack.getRawBounds(bounds);
5011 return bounds;
5120 public void getStackDockedModeBounds(int stackId, Rect bounds, boolean ignoreVisibility) {
5124 stack.getStackDockedModeBoundsLocked(bounds, ignoreVisibility);
5127 bounds.setEmpty();
5132 public void getStackBounds(int stackId, Rect bounds) {
5136 stack.getBounds(bounds);
5139 bounds.setEmpty();
5146 * @param bounds New stack bounds. Passing in null sets the bounds to fullscreen.
5151 public boolean resizeStack(int stackId, Rect bounds,
5160 if (stack.setBounds(bounds, configs, taskBounds, taskTempInsetBounds)
5180 public void positionTaskInStack(int taskId, int stackId, int position, Rect bounds,
5197 task.positionTaskInStack(stack, position, bounds, config);
5209 public void resizeTask(int taskId, Rect bounds, Configuration configuration,
5218 if (task.resizeLocked(bounds, configuration, forced) && relayout) {
5242 public void scrollTask(int taskId, Rect bounds) {
5250 if (task.scrollLocked(bounds)) {
5277 public void getTaskBounds(int taskId, Rect bounds) {
5281 task.getBounds(bounds);
5284 bounds.setEmpty();
6300 // Don't include wallpaper in bounds calculation
8771 // Set some sort of reasonable bounds on the size of the display that we
10935 public void animateResizePinnedStack(final Rect bounds, final int animationDuration) {
10948 stack, originalBounds, bounds, animationDuration);
11050 * Calculates the smallest width for a task given the {@param bounds}. It does that by iterating
11052 * that the bounds might change because the snap algorithm snaps to a different value.
11056 public int getSmallestWidthForTaskBounds(Rect bounds) {
11059 .getSmallestWidthDpForBounds(bounds);