Searched refs:mMaxHeight (Results 1 - 8 of 8) sorted by relevance
/frameworks/base/libs/hwui/ |
H A D | FontRenderer.cpp | 396 if (glyph.fHeight + 2 > mCacheLines[mCacheLines.size() - 1]->mMaxHeight) { 403 if (glyph.fHeight + 2 > mCacheLines[mCacheLines.size() - 1]->mMaxHeight) { 497 nextLine += mCacheLines.top()->mMaxHeight; 499 nextLine += mCacheLines.top()->mMaxHeight; 501 nextLine += mCacheLines.top()->mMaxHeight; 503 nextLine += mCacheLines.top()->mMaxHeight; 505 nextLine += mCacheLines.top()->mMaxHeight; 507 nextLine += mCacheLines.top()->mMaxHeight; 513 nextLine += mCacheLines.top()->mMaxHeight; 586 uint32_t height = cl->mMaxHeight; [all...] |
H A D | FontRenderer.h | 238 uint16_t mMaxHeight; member in struct:android::uirenderer::FontRenderer::CacheTextureLine 246 mMaxHeight(maxHeight), 254 if (glyph.fHeight + 2 > mMaxHeight) {
|
/frameworks/base/libs/rs/ |
H A D | rsFont.cpp | 411 if ((uint32_t)bitmap->rows > mCacheLines[mCacheLines.size()-1]->mMaxHeight) { 475 mCacheLines[i]->mMaxHeight, 541 nextLine += mCacheLines.top()->mMaxHeight; 543 nextLine += mCacheLines.top()->mMaxHeight; 545 nextLine += mCacheLines.top()->mMaxHeight; 547 nextLine += mCacheLines.top()->mMaxHeight; 549 nextLine += mCacheLines.top()->mMaxHeight; 551 nextLine += mCacheLines.top()->mMaxHeight; 816 if ((uint32_t)bitmap->rows > mMaxHeight) {
|
H A D | rsFont.h | 166 uint32_t mMaxHeight; member in struct:android::renderscript::FontState::CacheTextureLine 173 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow),
|
/frameworks/base/core/java/android/widget/ |
H A D | ProgressBar.java | 197 int mMaxHeight; field in class:ProgressBar 258 // Calling this method can set mMaxHeight, make sure the corresponding 259 // XML attribute for mMaxHeight is read after calling this method 269 mMaxHeight = a.getDimensionPixelSize(R.styleable.ProgressBar_maxHeight, mMaxHeight); 411 mMaxHeight = 48; 519 if (mMaxHeight < drawableHeight) { 520 mMaxHeight = drawableHeight; 1012 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
|
H A D | AbsSeekBar.java | 237 int trackHeight = Math.min(mMaxHeight, h - mPaddingTop - mPaddingBottom); 316 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
|
H A D | ImageView.java | 67 private int mMaxHeight = Integer.MAX_VALUE; field in class:ImageView 286 mMaxHeight = maxHeight; 702 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec);
|
H A D | NumberPicker.java | 218 private final int mMaxHeight; field in class:NumberPicker 552 mMaxHeight = attributesArray.getDimensionPixelSize(R.styleable.NumberPicker_maxHeight, 554 if (mMinHeight != SIZE_UNSPECIFIED && mMaxHeight != SIZE_UNSPECIFIED 555 && mMinHeight > mMaxHeight) { 755 final int newHeightMeasureSpec = makeMeasureSpec(heightMeasureSpec, mMaxHeight);
|
Completed in 33 milliseconds