Home | History | Annotate | Download | only in view

Lines Matching refs:boundingRect

5154                 RectF boundingRect = attachInfo.mTmpTransformRect;
5155 boundingRect.set(dirty);
5172 transformMatrix.mapRect(boundingRect);
5173 dirty.set((int) Math.floor(boundingRect.left),
5174 (int) Math.floor(boundingRect.top),
5175 (int) Math.ceil(boundingRect.right),
5176 (int) Math.ceil(boundingRect.bottom));
5210 RectF boundingRect = attachInfo.mTmpTransformRect;
5211 boundingRect.set(dirty);
5212 m.mapRect(boundingRect);
5213 dirty.set((int) Math.floor(boundingRect.left),
5214 (int) Math.floor(boundingRect.top),
5215 (int) Math.ceil(boundingRect.right),
5216 (int) Math.ceil(boundingRect.bottom));