HomeSort by relevance Sort by last modified time
    Searched refs:mMaxHeight (Results 1 - 10 of 10) sorted by null

  /packages/apps/Email/src/com/android/email/view/
SizeBoundingFrameLayout.java 33 private int mMaxHeight = DIMENSION_DEFAULT;
54 mMaxHeight = a.getDimensionPixelSize(
72 mMaxHeight = maxHeight;
78 return mMaxHeight;
101 if (mMaxHeight >= 0) {
104 heightSize = Math.min(heightSize, mMaxHeight);
108 heightSize = mMaxHeight;
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
ProgressBar.java 197 int mMaxHeight;
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;
    [all...]
AbsSeekBar.java 267 int trackHeight = Math.min(mMaxHeight, h - mPaddingTop - mPaddingBottom);
373 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
  /frameworks/base/libs/hwui/
FontRenderer.cpp 397 if (glyph.fHeight + 2 > mCacheLines[mCacheLines.size() - 1]->mMaxHeight) {
404 if (glyph.fHeight + 2 > mCacheLines[mCacheLines.size() - 1]->mMaxHeight) {
498 nextLine += mCacheLines.top()->mMaxHeight;
500 nextLine += mCacheLines.top()->mMaxHeight;
502 nextLine += mCacheLines.top()->mMaxHeight;
504 nextLine += mCacheLines.top()->mMaxHeight;
506 nextLine += mCacheLines.top()->mMaxHeight;
508 nextLine += mCacheLines.top()->mMaxHeight;
514 nextLine += mCacheLines.top()->mMaxHeight;
587 uint32_t height = cl->mMaxHeight;
    [all...]
FontRenderer.h 238 uint16_t mMaxHeight;
246 mMaxHeight(maxHeight),
254 if (glyph.fHeight + 2 > mMaxHeight) {
  /frameworks/base/libs/rs/
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) {
rsFont.h 166 uint32_t mMaxHeight;
173 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow),
  /frameworks/base/core/java/android/widget/
ProgressBar.java 197 int mMaxHeight;
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;
    [all...]
AbsSeekBar.java 237 int trackHeight = Math.min(mMaxHeight, h - mPaddingTop - mPaddingBottom);
316 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
ImageView.java 67 private int mMaxHeight = Integer.MAX_VALUE;
286 mMaxHeight = maxHeight;
702 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec);
    [all...]

Completed in 484 milliseconds