Home | History | Annotate | Download | only in app

Lines Matching refs:taskBounds

2624         public Rect[] taskBounds;
2652 final int boundsCount = taskBounds == null ? 0 : taskBounds.length;
2655 dest.writeInt(taskBounds[i].left);
2656 dest.writeInt(taskBounds[i].top);
2657 dest.writeInt(taskBounds[i].right);
2658 dest.writeInt(taskBounds[i].bottom);
2682 taskBounds = new Rect[boundsCount];
2684 taskBounds[i] = new Rect();
2685 taskBounds[i].set(
2689 taskBounds = null;
2733 if (taskBounds != null) {
2734 sb.append(" bounds="); sb.append(taskBounds[i].toShortString());