Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/
DFontRenderer.cpp584 uint32_t paddedHeight = (uint32_t) (bounds.top - bounds.bottom) + 2 * intRadius; in renderDropShadow() local
587 if (paddedWidth > maxSize || paddedHeight > maxSize) { in renderDropShadow()
595 int size = paddedWidth * paddedHeight; in renderDropShadow()
608 Font::BITMAP, dataBuffer, paddedWidth, paddedHeight, nullptr, positions); in renderDropShadow()
613 blurImage(&dataBuffer, paddedWidth, paddedHeight, radius); in renderDropShadow()
617 image.height = paddedHeight; in renderDropShadow()
/frameworks/base/core/java/android/widget/
DAbsSeekBar.java580 final int paddedHeight = h - mPaddingTop - mPaddingBottom;
586 final int trackHeight = Math.min(mMaxHeight, paddedHeight);
593 final int offsetHeight = (paddedHeight - thumbHeight) / 2;
597 final int offsetHeight = (paddedHeight - trackHeight) / 2;
DSimpleMonthView.java895 final int paddedHeight = paddedBottom - paddingTop; in onLayout() local
896 if (paddedWidth == mPaddedWidth || paddedHeight == mPaddedHeight) { in onLayout()
901 mPaddedHeight = paddedHeight; in onLayout()
906 final float scaleH = paddedHeight / (float) measuredPaddedHeight; in onLayout()
/frameworks/support/core-ui/java/android/support/v4/view/
DPagerTitleStrip.java385 final int paddedHeight = stripHeight - paddingTop - paddingBottom; in updateTextPositions() local
386 final int centeredTop = (paddedHeight - maxTextHeight) / 2; in updateTextPositions()