HomeSort by relevance Sort by last modified time
    Searched defs:minWidth (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/resources/identity_scope_approval_dialog/
background.js 17 minWidth: 1024,
  /packages/apps/DeskClock/src/com/android/deskclock/widget/
EllipsizeLayout.java 113 // TODO: Respect android:minWidth (easy with @TargetApi(16))
114 final int minWidth = 0;
115 if (maxWidth < minWidth) {
116 maxWidth = minWidth;
  /packages/apps/Launcher2/src/com/android/launcher2/
PendingAddItemInfo.java 51 int minWidth;
70 minWidth = i.minWidth;
84 minWidth = copy.minWidth;
LauncherAppWidgetInfo.java 42 int minWidth = -1;
59 // to indicate that they should be calculated based on the layout and minWidth/minHeight
  /packages/apps/Launcher3/src/com/android/launcher3/
PendingAddItemInfo.java 51 int minWidth;
70 minWidth = i.minWidth;
84 minWidth = copy.minWidth;
LauncherAppWidgetInfo.java 42 int minWidth = -1;
59 // to indicate that they should be calculated based on the layout and minWidth/minHeight
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarPart.cpp 107 int minWidth = calcScrollbarThicknessUsing(MinSize, style()->minWidth(), visibleSize, renderView);
109 setWidth(max(minWidth, min(maxWidth, w)));
RenderDeprecatedFlexibleBox.cpp 236 if (style()->minWidth().isFixed() && style()->minWidth().value() > 0) {
237 m_maxPreferredLogicalWidth = max(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->minWidth().value()));
238 m_minPreferredLogicalWidth = max(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->minWidth().value()));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleBoxData.h 49 Length minWidth() const { return m_minWidth; }
  /external/skia/tools/
PictureRenderingFlags.cpp 42 "pow2tile minWidth height: Use tiles with widths that are all a power\n"
166 int minWidth = atoi(widthString);
167 if (!SkIsPow2(minWidth) || minWidth < 0) {
173 tiledRenderer->setTileMinPowerOf2Width(minWidth);
  /packages/apps/DeskClock/src/com/android/alarmclock/
WidgetUtils.java 53 int minWidth = options.getInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH);
54 if (minWidth == 0) {
60 float ratio = (density * minWidth) / res.getDimension(R.dimen.min_digital_widget_width);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ViewportDescription.h 75 Length minWidth;
90 return minWidth == other.minWidth
  /frameworks/base/core/java/android/appwidget/
AppWidgetProviderInfo.java 70 * <p>This field corresponds to the <code>android:minWidth</code> attribute in
73 public int minWidth;
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;
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
CustomViewAccessibilityActivity.java 256 final int minWidth = Math.max(mOnLayout.getWidth(), mOffLayout.getWidth())
260 setMeasuredDimension(resolveSizeAndState(minWidth, widthMeasureSpec, 0),
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin_browsertest.cc 32 " minwidth='320' name='Jim' partition='someid' src='foo'>";
239 int minWidth = ExecuteScriptAndReturnInt(
240 "document.getElementById('browserplugin').minwidth");
241 EXPECT_EQ(320, minWidth);
556 "browserplugin.minwidth = 42;"
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
framebuffer.c 407 GLuint minWidth = ~0, minHeight = ~0;
417 minWidth = MIN2(minWidth, rb->Width);
422 if (minWidth != ~0) {
423 fb->Width = minWidth;
fbobject.c 681 GLuint minWidth = ~0, minHeight = ~0, maxWidth = 0, maxHeight = 0;
745 minWidth = MIN2(minWidth, texImg->Width);
760 minWidth = MIN2(minWidth, att->Renderbuffer->Width);
761 maxWidth = MAX2(minWidth, att->Renderbuffer->Width);
792 if (minWidth != maxWidth || minHeight != maxHeight) {
880 fb->Width = minWidth;
    [all...]
  /external/mesa3d/src/mesa/main/
framebuffer.c 407 GLuint minWidth = ~0, minHeight = ~0;
417 minWidth = MIN2(minWidth, rb->Width);
422 if (minWidth != ~0) {
423 fb->Width = minWidth;
fbobject.c 681 GLuint minWidth = ~0, minHeight = ~0, maxWidth = 0, maxHeight = 0;
745 minWidth = MIN2(minWidth, texImg->Width);
760 minWidth = MIN2(minWidth, att->Renderbuffer->Width);
761 maxWidth = MAX2(minWidth, att->Renderbuffer->Width);
792 if (minWidth != maxWidth || minHeight != maxHeight) {
880 fb->Width = minWidth;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
PhotoActionPopup.java 135 final int minWidth = context.getResources().getDimensionPixelSize(
137 if (anchorView.getWidth() < minWidth) {
138 listPopupWindow.setWidth(minWidth);
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherWidgetProvider.java 220 int minWidth = newOptions.getInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH);
  /frameworks/base/core/java/android/app/
MediaRouteButton.java 328 final int minWidth = Math.max(mMinWidth,
339 width = Math.min(widthSize, minWidth + getPaddingLeft() + getPaddingRight());
343 width = minWidth + getPaddingLeft() + getPaddingRight();
  /frameworks/native/opengl/tests/hwc/
hwcCommit.cpp 249 uint32_t minWidth;
257 uint32_t minWidth;
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);
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouteButton.java 427 final int minWidth = Math.max(mMinWidth,
438 width = Math.min(widthSize, minWidth + getPaddingLeft() + getPaddingRight());
442 width = minWidth + getPaddingLeft() + getPaddingRight();
  /external/chromium_org/chrome/browser/
chrome_content_browser_client.cc 600 int minWidth = info.GetSmallestDIPWidth();
602 if (minWidth <= kWidthForMinFSM)
604 if (minWidth >= kWidthForMaxFSM)
608 float ratio = static_cast<float>(minWidth - kWidthForMinFSM) /
    [all...]

Completed in 390 milliseconds

1 2 3