Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
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);
160 …var newElementPosition = { x: 0, y: 0, width: preferredWidth + scrollerWidth, height: 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/core/rendering/
DRenderBox.cpp2324 …LayoutUnit preferredWidth = computeLogicalWidthInRegionUsing(MainOrPreferredSize, styleToUse->logi… in computeLogicalWidthInRegion() local
2325 …computedValues.m_extent = constrainLogicalWidthInRegionByMinMax(preferredWidth, containerWidthInIn… in computeLogicalWidthInRegion()
3487 LayoutUnit preferredWidth = maxPreferredLogicalWidth() - bordersPlusPadding; in shrinkToFitWidth() local
3490 computedValues.m_extent = min(max(preferredMinWidth, availableWidth), preferredWidth); in shrinkToFitWidth()
3626 LayoutUnit preferredWidth = maxPreferredLogicalWidth() - bordersPlusPadding; in computePositionedLogicalWidthUsing() local
3629 computedValues.m_extent = min(max(preferredMinWidth, availableWidth), preferredWidth); in computePositionedLogicalWidthUsing()
DRenderBlock.cpp4063 static inline void updatePreferredWidth(LayoutUnit& preferredWidth, float& result) in updatePreferredWidth() argument
4066 preferredWidth = max(snappedResult, preferredWidth); in updatePreferredWidth()