Searched refs:boundingRect (Results 1 – 2 of 2) sorted by relevance
5191 RectF boundingRect = attachInfo.mTmpTransformRect; in invalidateChild() local5192 boundingRect.set(dirty); in invalidateChild()5209 transformMatrix.mapRect(boundingRect); in invalidateChild()5210 dirty.set((int) Math.floor(boundingRect.left), in invalidateChild()5211 (int) Math.floor(boundingRect.top), in invalidateChild()5212 (int) Math.ceil(boundingRect.right), in invalidateChild()5213 (int) Math.ceil(boundingRect.bottom)); in invalidateChild()5247 RectF boundingRect = attachInfo.mTmpTransformRect; in invalidateChild() local5248 boundingRect.set(dirty); in invalidateChild()5249 m.mapRect(boundingRect); in invalidateChild()[all …]
13687 RectF boundingRect = mAttachInfo.mTmpTransformRect; in transformRect() local13688 boundingRect.set(rect); in transformRect()13689 getMatrix().mapRect(boundingRect); in transformRect()13690 rect.set((int) Math.floor(boundingRect.left), in transformRect()13691 (int) Math.floor(boundingRect.top), in transformRect()13692 (int) Math.ceil(boundingRect.right), in transformRect()13693 (int) Math.ceil(boundingRect.bottom)); in transformRect()