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

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FixedTableLayout.h 36 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minWidth, LayoutUnit& maxWidth) OVERRIDE;
37 virtual void applyPreferredLogicalWidthQuirks(LayoutUnit& minWidth, LayoutUnit& maxWidth) const OVERRIDE;
TableLayout.h 42 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minWidth, LayoutUnit& maxWidth) = 0;
43 virtual void applyPreferredLogicalWidthQuirks(LayoutUnit& minWidth, LayoutUnit& maxWidth) const = 0;
AutoTableLayout.h 39 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minWidth, LayoutUnit& maxWidth) OVERRIDE;
40 virtual void applyPreferredLogicalWidthQuirks(LayoutUnit& minWidth, LayoutUnit& maxWidth) const OVERRIDE;
RenderSlider.cpp 74 if (style()->minWidth().isFixed() && style()->minWidth().value() > 0) {
75 m_maxPreferredLogicalWidth = max(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->minWidth().value()));
76 m_minPreferredLogicalWidth = max(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->minWidth().value()));
FixedTableLayout.cpp 180 void FixedTableLayout::computeIntrinsicLogicalWidths(LayoutUnit& minWidth, LayoutUnit& maxWidth)
182 minWidth = maxWidth = calcWidthArray();
185 void FixedTableLayout::applyPreferredLogicalWidthQuirks(LayoutUnit& minWidth, LayoutUnit& maxWidth) const
189 minWidth = maxWidth = max<int>(minWidth, tableLogicalWidth.value() - m_table->bordersPaddingAndSpacingInRowDirection());
RenderFileUploadControl.cpp 189 if (style()->minWidth().isFixed() && style()->minWidth().value() > 0) {
190 m_maxPreferredLogicalWidth = max(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->minWidth().value()));
191 m_minPreferredLogicalWidth = max(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->minWidth().value()));
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...]
  /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/dom/
ViewportArguments.h 91 Length minWidth;
108 && minWidth == other.minWidth
  /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;
  /external/chromium_org/chrome/browser/resources/apps_debugger/
background.js 10 minWidth: 800,
  /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;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleBoxData.h 49 Length minWidth() const { return m_minWidth; }
  /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);
  /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);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
LabelMaker.java 162 public int add(GL10 gl, Drawable drawable, int minWidth, int minHeight) {
163 return add(gl, drawable, null, null, minWidth, minHeight);
175 int minWidth, int minHeight) {
183 minWidth = Math.max(minWidth, background.getMinimumWidth());
202 int width = Math.max(minWidth, textWidth + padWidth);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SplitView.js 330 * @param {number=} minWidth
333 setSidebarElementConstraints: function(minWidth, minHeight)
335 if (typeof minWidth === "number")
336 this._minimumSidebarWidth = minWidth;
342 * @param {number=} minWidth
345 setMainElementConstraints: function(minWidth, minHeight)
347 if (typeof minWidth === "number")
348 this._minimumMainWidth = minWidth;
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaFeatureNames.h 64 macro(minWidth, "min-width") \
  /external/chromium_org/third_party/icu/source/common/
rbbinode.h 112 RBBI_DEBUG_printUnicodeString(const UnicodeString &s, int minWidth=0);
  /external/icu4c/common/
rbbinode.h 112 RBBI_DEBUG_printUnicodeString(const UnicodeString &s, int minWidth=0);
  /external/skia/tools/
PictureRenderingFlags.cpp 43 "pow2tile minWidth height: Use tiles with widths that are all a power\n"
167 int minWidth = atoi(widthString);
168 if (!SkIsPow2(minWidth) || minWidth < 0) {
174 tiledRenderer->setTileMinPowerOf2Width(minWidth);
  /external/chromium_org/third_party/WebKit/Source/core/Resources/pagepopups/
pickerCommon.js 102 * @param {?number} minWidth
106 function adjustWindowRect(width, height, minWidth, minHeight) {
107 if (typeof minWidth !== "number")
108 minWidth = 0;
121 _adjustWindowRectHorizontally(windowRect, availRect, anchorRect, minWidth);
146 function _adjustWindowRectHorizontally(windowRect, availRect, anchorRect, minWidth) {
148 windowRect.width = Math.max(windowRect.width, minWidth);

Completed in 1068 milliseconds

1 2 3 4 5 6