Home
last modified time | relevance | path

Searched refs:popupWidth (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
DWebPopupMenuWin.cpp55 int popupWidth = 0; in setUpPlatformData() local
69popupWidth = std::max<float>(popupWidth, ceilf(itemFont.width(TextRun(text.characters(), text.leng… in setUpPlatformData()
74popupWidth += max(0, data.m_clientPaddingRight - data.m_clientInsetRight) + max(0, data.m_clientPa… in setUpPlatformData()
75 popupWidth += 2 * popupWindowBorderWidth; in setUpPlatformData()
76 data.m_popupWidth = popupWidth; in setUpPlatformData()
79 …inates.width() - m_popupClient->clientInsetLeft() - m_popupClient->clientInsetRight(), popupWidth); in setUpPlatformData()
/external/webkit/Source/WebCore/platform/win/
DPopupMenuWin.cpp315 int popupWidth = 0; in calculatePositionAndSize() local
329popupWidth = max(popupWidth, static_cast<int>(ceilf(itemFont.width(TextRun(text.characters(), text… in calculatePositionAndSize()
334 popupWidth += ScrollbarTheme::nativeTheme()->scrollbarThickness(SmallScrollbar); in calculatePositionAndSize()
337popupWidth += max(0, client()->clientPaddingRight() - client()->clientInsetRight()) + max(0, clien… in calculatePositionAndSize()
340 popupWidth += 2 * popupWindowBorderWidth; in calculatePositionAndSize()
344popupWidth = max(rScreenCoords.width() - client()->clientInsetLeft() - client()->clientInsetRight(… in calculatePositionAndSize()
349 IntRect popupRect(popupX, rScreenCoords.maxY(), popupWidth, popupHeight); in calculatePositionAndSize()
/external/webkit/Source/WebKit2/UIProcess/win/
DWebPopupMenuProxyWin.cpp381 int popupWidth = m_data.m_popupWidth; in calculatePositionAndSize() local
385 popupWidth += ScrollbarTheme::nativeTheme()->scrollbarThickness(SmallScrollbar); in calculatePositionAndSize()
391popupWidth = max(rectInScreenCoords.width() - m_data.m_clientInsetLeft - m_data.m_clientInsetRight… in calculatePositionAndSize()
396 IntRect popupRect(popupX, rectInScreenCoords.maxY(), popupWidth, popupHeight); in calculatePositionAndSize()
/external/webkit/Source/WebCore/inspector/front-end/
DSourceFrame.js834 const popupWidth = 300;
836 this._popup.show(element, popupWidth, popupHeight);
/external/chromium/chrome/browser/autocomplete/
Dautocomplete_popup_view_mac.mm462 const CGFloat popupWidth = NSWidth(fieldRectBase) - 2 * kWindowBorderWidth;
463 DCHECK_GT(popupWidth, 0.0);
464 const CGFloat matrixWidth = popupWidth / [popup_ userSpaceScaleFactor];
/external/webkit/Source/WebCore/platform/chromium/
DPopupMenuChromium.cpp440 int popupWidth = frameRect().width(); in layoutAndGetRightOffset() local
453 rightOffset = popupWidth - listBoxWidth; in layoutAndGetRightOffset()