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

/frameworks/base/libs/hwui/
H A DFontRenderer.cpp584 uint32_t paddedHeight = (uint32_t) (bounds.top - bounds.bottom) + 2 * intRadius; local
587 if (paddedWidth > maxSize || paddedHeight > maxSize) {
596 int size = paddedWidth * paddedHeight;
599 int size = paddedWidth * paddedHeight;
613 Font::BITMAP, dataBuffer, paddedWidth, paddedHeight, nullptr, positions);
618 blurImage(&dataBuffer, paddedWidth, paddedHeight, radius);
622 image.height = paddedHeight;
/frameworks/base/core/java/android/widget/
H A 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;
H A DSimpleMonthView.java894 final int paddedHeight = paddedBottom - paddingTop;
895 if (paddedWidth == mPaddedWidth || paddedHeight == mPaddedHeight) {
900 mPaddedHeight = paddedHeight;
905 final float scaleH = paddedHeight / (float) measuredPaddedHeight;
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerTitleStrip.java394 final int paddedHeight = stripHeight - paddingTop - paddingBottom;
395 final int centeredTop = (paddedHeight - maxTextHeight) / 2;

Completed in 114 milliseconds