Searched refs:getMinimumWidth (Results 1 - 17 of 17) sorted by relevance

/frameworks/support/v4/jellybean/android/support/v4/view/
H A DViewCompatJB.java73 public static int getMinimumWidth(View view) { method in class:ViewCompatJB
74 return view.getMinimumWidth();
/frameworks/support/v4/donut/android/support/v4/view/
H A DViewCompatBase.java62 static int getMinimumWidth(View view) { method in class:ViewCompatBase
/frameworks/base/core/tests/coretests/src/android/view/
H A DDrawableBgMinSizeTest.java85 view.getWidth() >= mBackgroundDrawable.getMinimumWidth());
121 .getWidth() >= mBigBackgroundDrawable.getMinimumWidth());
/frameworks/support/v4/donut/android/support/v4/graphics/drawable/
H A DDrawableWrapperDonut.java138 public int getMinimumWidth() { method in class:DrawableWrapperDonut
139 return mDrawable.getMinimumWidth();
/frameworks/support/v7/appcompat/src/android/support/v7/graphics/drawable/
H A DDrawableWrapper.java135 public int getMinimumWidth() { method in class:DrawableWrapper
136 return mDrawable.getMinimumWidth();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DStatusBarIconView.java266 if (dw < mNumberBackground.getMinimumWidth()) {
267 dw = mNumberBackground.getMinimumWidth();
271 if (dh < mNumberBackground.getMinimumWidth()) {
272 dh = mNumberBackground.getMinimumWidth();
/frameworks/base/core/java/android/widget/
H A DDayPickerViewPager.java95 maxWidth = Math.max(maxWidth, drawable.getMinimumWidth());
H A DFrameLayout.java222 maxWidth = Math.max(maxWidth, drawable.getMinimumWidth());
/frameworks/base/core/java/com/android/internal/widget/
H A DDialogViewAnimator.java99 maxWidth = Math.max(maxWidth, drawable.getMinimumWidth());
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPrintOptionsLayout.java115 width = Math.max(width, getMinimumWidth());
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java330 public int getMinimumWidth(View view); method in interface:ViewCompat.ViewCompatImpl
649 public int getMinimumWidth(View view) { method in class:ViewCompat.BaseViewCompatImpl
650 return ViewCompatBase.getMinimumWidth(view);
1283 public int getMinimumWidth(View view) { method in class:ViewCompat.JBViewCompatImpl
1284 return ViewCompatJB.getMinimumWidth(view);
2303 public static int getMinimumWidth(View view) { method in class:ViewCompat
2304 return IMPL.getMinimumWidth(view);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawableContainer.java359 public int getMinimumWidth() { method in class:DrawableContainer
363 return mCurrDrawable != null ? mCurrDrawable.getMinimumWidth() : 0;
1014 s = dr.getMinimumWidth();
H A DDrawable.java936 public int getMinimumWidth() { method in class:Drawable
H A DNinePatchDrawable.java543 public int getMinimumWidth() { method in class:NinePatchDrawable
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java219 public int getMinimumWidth() { method in class:WallpaperManager.FastBitmapDrawable
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java2519 width = ViewCompat.getMinimumWidth(this);
7545 * @return The host RecyclerView's {@link View#getMinimumWidth()}
7547 public int getMinimumWidth() { method in class:RecyclerView.LayoutManager
7548 return ViewCompat.getMinimumWidth(mRecyclerView);
/frameworks/base/core/java/android/view/
H A DView.java17284 || mBackground.getMinimumWidth() != background.getMinimumWidth()) {
19021 * ({@link android.graphics.drawable.Drawable#getMinimumWidth()}).
19029 return (mBackground == null) ? mMinWidth : max(mMinWidth, mBackground.getMinimumWidth());
19070 public int getMinimumWidth() { method in class:View
19081 * @see #getMinimumWidth()

Completed in 688 milliseconds