Searched refs:roundedCornerRectF (Results 1 – 1 of 1) sorted by relevance
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/ |
D | StyledCornersBitmapDrawable.java | 405 RectF roundedCornerRectF = sRectF; in recalculatePath() local 406 roundedCornerRectF.set(0, 0, 2 * mCornerRoundRadius, 2 * mCornerRoundRadius); in recalculatePath() 414 roundedCornerRectF.offsetTo(left, top); in recalculatePath() 415 mClipPath.arcTo(roundedCornerRectF, START_LEFT, QUARTER_CIRCLE); in recalculatePath() 428 roundedCornerRectF.offsetTo(right - roundedCornerRectF.width(), top); in recalculatePath() 429 mClipPath.arcTo(roundedCornerRectF, START_TOP, QUARTER_CIRCLE); in recalculatePath() 442 roundedCornerRectF.offsetTo(right - roundedCornerRectF.width(), in recalculatePath() 443 bottom - roundedCornerRectF.height()); in recalculatePath() 444 mClipPath.arcTo(roundedCornerRectF, START_RIGHT, QUARTER_CIRCLE); in recalculatePath() 457 roundedCornerRectF.offsetTo(left, bottom - roundedCornerRectF.height()); in recalculatePath() [all …]
|