Searched defs:getMinimumWidth (Results 1 - 11 of 11) sorted by relevance

/frameworks/support/v4/donut/android/support/v4/view/
H A DViewCompatBase.java63 static int getMinimumWidth(View view) { method in class:ViewCompatBase
/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/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/appcompat/src/android/support/v7/graphics/drawable/
H A DDrawableWrapper.java135 public int getMinimumWidth() { method in class:DrawableWrapper
136 return mDrawable.getMinimumWidth();
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java257 public int getMinimumWidth() { method in class:WallpaperManager.FastBitmapDrawable
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java1009 public int getMinimumWidth() { method in class:Drawable
H A DDrawableContainer.java364 public int getMinimumWidth() { method in class:DrawableContainer
368 return mCurrDrawable != null ? mCurrDrawable.getMinimumWidth() : 0;
1100 s = dr.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/support/v7/recyclerview/src/android/support/v7/widget/
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/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 4804 milliseconds