Home
last modified time | relevance | path

Searched refs:preferredWidth (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
DPopover.js61 show: function(element, anchor, preferredWidth, preferredHeight, arrowDirection) argument
63 this._innerShow(null, element, anchor, preferredWidth, preferredHeight, arrowDirection);
72 showView: function(view, anchor, preferredWidth, preferredHeight) argument
74 this._innerShow(view, view.element, anchor, preferredWidth, preferredHeight);
85 …_innerShow: function(view, contentElement, anchor, preferredWidth, preferredHeight, arrowDirection) argument
98 preferredWidth = preferredWidth || preferredSize.width;
108 this._positionElement(anchor, preferredWidth, preferredHeight, arrowDirection);
146 _positionElement: function(anchorElement, preferredWidth, preferredHeight, arrowDirection) argument
155 preferredWidth = Math.max(preferredWidth, 50);
163 …var newElementPosition = { x: 0, y: 0, width: preferredWidth + scrollerWidth, height: preferredHei…
DView.js497 setMinimumAndPreferredSizes: function(width, height, preferredWidth, preferredHeight) argument
499 …this._constraints = new Constraints(new Size(width, height), new Size(preferredWidth, preferredHei…
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
DCCombo3.java350 int preferredWidth = in doDropDown() local
356 m_popup.computeTrim(popupLocation.x, popupLocation.y, preferredWidth, preferredHeight); in doDropDown()
DCComboBox.java590 int preferredWidth =
597 preferredWidth,
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
DFilteredItemSelectionDialog.js79 var preferredWidth = Math.max(relativeToElement.offsetWidth * 2 / 3, 500);
80 var width = Math.min(preferredWidth, container.offsetWidth - 2 * shadowPadding);
/external/deqp/modules/glshared/
DglsTextureTestUtil.hpp237 …RandomViewport (const tcu::RenderTarget& renderTarget, int preferredWidth, int preferredHeight, de…
DglsTextureTestUtil.cpp1014 RandomViewport::RandomViewport (const tcu::RenderTarget& renderTarget, int preferredWidth, int pref… in RandomViewport() argument
1017 , width (deMin32(preferredWidth, renderTarget.getWidth())) in RandomViewport()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBox.cpp2225 …LayoutUnit preferredWidth = computeLogicalWidthUsing(MainOrPreferredSize, styleToUse->logicalWidth… in computeLogicalWidth() local
2226 …computedValues.m_extent = constrainLogicalWidthByMinMax(preferredWidth, containerWidthInInlineDire… in computeLogicalWidth()
3189 LayoutUnit preferredWidth = maxPreferredLogicalWidth() - bordersPlusPadding; in shrinkToFitWidth() local
3192 computedValues.m_extent = min(max(preferredMinWidth, availableWidth), preferredWidth); in shrinkToFitWidth()
3327 LayoutUnit preferredWidth = maxPreferredLogicalWidth() - bordersPlusPadding; in computePositionedLogicalWidthUsing() local
3330 computedValues.m_extent = min(max(preferredMinWidth, availableWidth), preferredWidth); in computePositionedLogicalWidthUsing()
DRenderBlockLineLayout.cpp1328 static inline void updatePreferredWidth(LayoutUnit& preferredWidth, float& result) in updatePreferredWidth() argument
1331 preferredWidth = max(snappedResult, preferredWidth); in updatePreferredWidth()