Home
last modified time | relevance | path

Searched refs:sRect (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/apps/Contacts/src/com/android/contacts/lettertiles/
H A DLetterTileDrawable.java58 private static final Rect sRect = new Rect(); field in LetterTileDrawable
129 sRect.set(0, 0, width, height); in drawBitmap()
135 canvas.drawBitmap(bitmap, sRect, destRect, sPaint); in drawBitmap()
160 sPaint.getTextBounds(sFirstChar, 0, 1, sRect); in drawLetterTile()
168 bounds.centerY() + mOffset * bounds.height() - sRect.exactCenterY(), in drawLetterTile()
/aosp12/packages/apps/Car/Messenger/src/com/android/car/messenger/core/ui/shared/
H A DLetterTileDrawable.java56 @NonNull private static final Rect sRect = new Rect(); field in LetterTileDrawable
178 sPaint.getTextBounds(mLetters, 0, mLetters.length(), sRect); in drawLetterTile()
188 bounds.centerY() + mOffset * bounds.height() + sRect.height() / 2, in drawLetterTile()
/aosp12/frameworks/av/media/codec2/hidl/1.0/utils/
H A Dtypes.cpp826 C2Rect sRect = s.crop(); in objcpy() local
827 dRectInfo.left = static_cast<uint32_t>(sRect.left); in objcpy()
828 dRectInfo.top = static_cast<uint32_t>(sRect.top); in objcpy()
829 dRectInfo.width = static_cast<uint32_t>(sRect.width); in objcpy()
830 dRectInfo.height = static_cast<uint32_t>(sRect.height); in objcpy()