Searched defs:minWidth (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProviderInfo.java70 * <p>This field corresponds to the <code>android:minWidth</code> attribute in
73 public int minWidth; field in class:AppWidgetProviderInfo
86 * is greater than minWidth or if horizontal resizing isn't enabled (see {@link #resizeMode}).
208 this.minWidth = in.readInt();
233 out.writeInt(this.minWidth);
258 that.minWidth = this.minWidth;
H A DAppWidgetHostView.java247 * @param minWidth The minimum width in dips that the widget will be displayed at.
253 public void updateAppWidgetSize(Bundle newOptions, int minWidth, int minHeight, int maxWidth, argument
255 updateAppWidgetSize(newOptions, minWidth, minHeight, maxWidth, maxHeight, false);
261 public void updateAppWidgetSize(Bundle newOptions, int minWidth, int minHeight, int maxWidth, argument
276 int newMinWidth = minWidth - (ignorePadding ? 0 : xPaddingDips);
/frameworks/native/opengl/tests/hwc/
H A DhwcCommit.cpp249 uint32_t minWidth; member in struct:meas::displayFrame
257 uint32_t minWidth; member in struct:meas::sourceCrop
484 measPtr->df.minWidth = dfMinWidth(format->format);
485 testPrintI(" dfMinWidth: %u", measPtr->df.minWidth);
503 measPtr->sc.minWidth = scMinWidth(format->format, measPtr->df.minDim);
504 testPrintI(" scMinWidth: %u", measPtr->sc.minWidth);
/frameworks/base/core/java/android/view/
H A DView.java15759 * @param minWidth The minimum width the view will try to be.
15765 public void setMinimumWidth(int minWidth) { argument
15766 mMinWidth = minWidth;

Completed in 201 milliseconds