Searched refs:rectF (Results 1 – 4 of 4) sorted by relevance
42 RectF rectF = sRectF.get(); in offsetDescendantRect() local43 if (rectF == null) { in offsetDescendantRect()44 rectF = new RectF(); in offsetDescendantRect()46 rectF.set(rect); in offsetDescendantRect()47 m.mapRect(rectF); in offsetDescendantRect()48 rect.set((int) (rectF.left + 0.5f), (int) (rectF.top + 0.5f), in offsetDescendantRect()49 (int) (rectF.right + 0.5f), (int) (rectF.bottom + 0.5f)); in offsetDescendantRect()
60 final RectF rectF = new RectF(rect); in rotateRect() local63 matrix.mapRect(rectF); in rotateRect()64 rect.set((int) rectF.left, (int) rectF.top, (int) rectF.right, (int) rectF.bottom); in rotateRect()
90 final RectF rectF = mRectF; in draw() local95 rectF.set(mRect); in draw()96 rectF.left += halfBorderWidth; in draw()97 rectF.top += halfBorderWidth; in draw()98 rectF.right -= halfBorderWidth; in draw()99 rectF.bottom -= halfBorderWidth; in draw()102 canvas.drawOval(rectF, mPaint); in draw()
90 RectF rectF = new RectF(rect); in mapRect() local91 transform.mapRect(rectF); in mapRect()92 return createRect(rectF); in mapRect()