HomeSort by relevance Sort by last modified time
    Searched refs:popupWidth (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
WebPopupMenuWin.cpp 55 int popupWidth = 0;
69 popupWidth = std::max<float>(popupWidth, ceilf(itemFont.width(TextRun(text.characters(), text.length()))));
72 // FIXME: popupWidth should probably take into account monitor constraints as is done with WebPopupMenuProxyWin::calculatePositionAndSize.
74 popupWidth += max(0, data.m_clientPaddingRight - data.m_clientInsetRight) + max(0, data.m_clientPaddingLeft - data.m_clientInsetLeft);
75 popupWidth += 2 * popupWindowBorderWidth;
76 data.m_popupWidth = popupWidth;
79 int backingStoreWidth = max(pageCoordinates.width() - m_popupClient->clientInsetLeft() - m_popupClient->clientInsetRight(), popupWidth);
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.cpp 315 int popupWidth = 0;
329 popupWidth = max(popupWidth, static_cast<int>(ceilf(itemFont.width(TextRun(text.characters(), text.length())))));
334 popupWidth += ScrollbarTheme::nativeTheme()->scrollbarThickness(SmallScrollbar);
337 popupWidth += max(0, client()->clientPaddingRight() - client()->clientInsetRight()) + max(0, client()->clientPaddingLeft() - client()->clientInsetLeft());
340 popupWidth += 2 * popupWindowBorderWidth;
344 popupWidth = max(rScreenCoords.width() - client()->clientInsetLeft() - client()->clientInsetRight(), popupWidth);
349 IntRect popupRect(popupX, rScreenCoords.maxY(), popupWidth, popupHeight);
  /external/webkit/Source/WebKit2/UIProcess/win/
WebPopupMenuProxyWin.cpp 381 int popupWidth = m_data.m_popupWidth;
385 popupWidth += ScrollbarTheme::nativeTheme()->scrollbarThickness(SmallScrollbar);
391 popupWidth = max(rectInScreenCoords.width() - m_data.m_clientInsetLeft - m_data.m_clientInsetRight, popupWidth);
396 IntRect popupRect(popupX, rectInScreenCoords.maxY(), popupWidth, popupHeight);
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java     [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
SourceFrame.js 834 const popupWidth = 300;
836 this._popup.show(element, popupWidth, popupHeight);
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
PopupMenuChromium.cpp 439 // popupWidth is the width of <select> element. Record it before resize frame.
440 int popupWidth = frameRect().width();
453 rightOffset = popupWidth - listBoxWidth;
    [all...]

Completed in 683 milliseconds