Home
last modified time | relevance | path

Searched refs:paddedHeight (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/libs/hwui/
DFontRenderer.cpp598 uint32_t paddedHeight = (uint32_t) (bounds.top - bounds.bottom) + 2 * intRadius; in renderDropShadow() local
601 if (paddedWidth > maxSize || paddedHeight > maxSize) { in renderDropShadow()
610 int size = paddedWidth * paddedHeight; in renderDropShadow()
613 int size = paddedWidth * paddedHeight; in renderDropShadow()
627 Font::BITMAP, dataBuffer, paddedWidth, paddedHeight, nullptr, positions); in renderDropShadow()
632 blurImage(&dataBuffer, paddedWidth, paddedHeight, radius); in renderDropShadow()
636 image.height = paddedHeight; in renderDropShadow()
/frameworks/base/core/java/android/widget/
DAbsSeekBar.java562 final int paddedHeight = h - mPaddingTop - mPaddingBottom;
568 final int trackHeight = Math.min(mMaxHeight, paddedHeight);
575 final int offsetHeight = (paddedHeight - thumbHeight) / 2;
579 final int offsetHeight = (paddedHeight - trackHeight) / 2;
DSimpleMonthView.java894 final int paddedHeight = paddedBottom - paddingTop; in onLayout() local
895 if (paddedWidth == mPaddedWidth || paddedHeight == mPaddedHeight) { in onLayout()
900 mPaddedHeight = paddedHeight; in onLayout()
905 final float scaleH = paddedHeight / (float) measuredPaddedHeight; in onLayout()
/frameworks/support/core-ui/java/android/support/v4/view/
DPagerTitleStrip.java397 final int paddedHeight = stripHeight - paddingTop - paddingBottom; in updateTextPositions() local
398 final int centeredTop = (paddedHeight - maxTextHeight) / 2; in updateTextPositions()