Searched refs:getMinimumWidth (Results 1 - 22 of 22) 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/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCommon.java173 public int getMinimumWidth() { method in class:VectorDrawableCommon
175 return mDelegateDrawable.getMinimumWidth();
177 return super.getMinimumWidth();
/frameworks/base/core/tests/coretests/src/android/view/
H A DDrawableBgMinSizeTest.java85 view.getWidth() >= mBackgroundDrawable.getMinimumWidth());
121 .getWidth() >= mBigBackgroundDrawable.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.java298 if (dw < mNumberBackground.getMinimumWidth()) {
299 dw = mNumberBackground.getMinimumWidth();
303 if (dh < mNumberBackground.getMinimumWidth()) {
304 dh = mNumberBackground.getMinimumWidth();
/frameworks/support/v4/donut/android/support/v4/view/
H A DViewCompatBase.java63 static int getMinimumWidth(View view) { method in class:ViewCompatBase
/frameworks/support/v4/donut/android/support/v4/graphics/drawable/
H A DDrawableWrapperDonut.java181 public int getMinimumWidth() { method in class:DrawableWrapperDonut
182 return mDrawable.getMinimumWidth();
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DWrapContentBasicTest.java154 when(mRecyclerView.getMinimumWidth()).thenReturn(250);
158 when(mRecyclerView.getMinimumWidth()).thenReturn(5);
H A DTestedFrameLayout.java87 getMinimumWidth()),
/frameworks/base/core/java/android/widget/
H A DDayPickerViewPager.java101 maxWidth = Math.max(maxWidth, drawable.getMinimumWidth());
H A DFrameLayout.java213 maxWidth = Math.max(maxWidth, drawable.getMinimumWidth());
/frameworks/base/core/java/com/android/internal/widget/
H A DDialogViewAnimator.java99 maxWidth = Math.max(maxWidth, drawable.getMinimumWidth());
H A DMediaNotificationView.java71 size = Math.max(size, mRightIcon.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.java415 int getMinimumWidth(View view); method in interface:ViewCompat.ViewCompatImpl
749 public int getMinimumWidth(View view) { method in class:ViewCompat.BaseViewCompatImpl
750 return ViewCompatBase.getMinimumWidth(view);
1454 public int getMinimumWidth(View view) { method in class:ViewCompat.JBViewCompatImpl
1455 return ViewCompatJB.getMinimumWidth(view);
2560 public static int getMinimumWidth(View view) { method in class:ViewCompat
2561 return IMPL.getMinimumWidth(view);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawableContainer.java364 public int getMinimumWidth() { method in class:DrawableContainer
368 return mCurrDrawable != null ? mCurrDrawable.getMinimumWidth() : 0;
1100 s = dr.getMinimumWidth();
H A DDrawable.java1009 public int getMinimumWidth() { method in class:Drawable
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DGridLayoutManager.java295 getMinimumWidth());
298 width = chooseSize(wSpec, usedWidth, getMinimumWidth());
H A DStaggeredGridLayoutManager.java585 getMinimumWidth());
588 width = chooseSize(wSpec, usedWidth, getMinimumWidth());
H A DRecyclerView.java2845 ViewCompat.getMinimumWidth(this));
6401 int width = chooseSize(wSpec, usedWidth, getMinimumWidth());
8579 * @return The host RecyclerView's {@link View#getMinimumWidth()}
8581 public int getMinimumWidth() { method in class:RecyclerView.LayoutManager
8582 return ViewCompat.getMinimumWidth(mRecyclerView);
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java257 public int getMinimumWidth() { method in class:WallpaperManager.FastBitmapDrawable
/frameworks/base/core/java/android/view/
H A DView.java18180 || mBackground.getMinimumWidth() != background.getMinimumWidth()) {
19957 * ({@link android.graphics.drawable.Drawable#getMinimumWidth()}).
19965 return (mBackground == null) ? mMinWidth : max(mMinWidth, mBackground.getMinimumWidth());
20007 public int getMinimumWidth() { method in class:View
20018 * @see #getMinimumWidth()

Completed in 9167 milliseconds