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

  /external/webkit/WebCore/rendering/
RenderScrollbarPart.cpp 89 int visibleSize = m_scrollbar->owningRenderer()->width() - m_scrollbar->owningRenderer()->borderLeft() - m_scrollbar->owningRenderer()->borderRight();
90 int w = calcScrollbarThicknessUsing(style()->width(), visibleSize);
91 int minWidth = calcScrollbarThicknessUsing(style()->minWidth(), visibleSize);
92 int maxWidth = style()->maxWidth().isUndefined() ? w : calcScrollbarThicknessUsing(style()->maxWidth(), visibleSize);
96 m_marginLeft = style()->marginLeft().calcMinValue(visibleSize);
97 m_marginRight = style()->marginRight().calcMinValue(visibleSize);
102 int visibleSize = m_scrollbar->owningRenderer()->height() - m_scrollbar->owningRenderer()->borderTop() - m_scrollbar->owningRenderer()->borderBottom();
103 int h = calcScrollbarThicknessUsing(style()->height(), visibleSize);
104 int minHeight = calcScrollbarThicknessUsing(style()->minHeight(), visibleSize);
105 int maxHeight = style()->maxHeight().isUndefined() ? h : calcScrollbarThicknessUsing(style()->maxHeight(), visibleSize);
    [all...]
  /external/webkit/WebCore/platform/
Scrollbar.h 63 int visibleSize() const { return m_visibleSize; }
79 void setProportion(int visibleSize, int totalSize);
Scrollbar.cpp 107 void Scrollbar::setProportion(int visibleSize, int totalSize)
109 if (visibleSize == m_visibleSize && totalSize == m_totalSize)
112 m_visibleSize = visibleSize;
ScrollbarThemeComposite.cpp 104 float proportion = static_cast<float>(scrollbar->visibleSize()) / scrollbar->totalSize();
269 float proportion = (float)scrollbar->visibleSize() / scrollbar->totalSize();
  /external/webkit/WebKit/win/Interfaces/
IWebScrollBarPrivate.idl 49 HRESULT setProportion([in] int visibleSize, [in] int totalSize);
  /external/webkit/WebKit/win/
WebScrollBar.h 75 /* [in] */ int visibleSize,
WebScrollBar.cpp 128 /* [in] */ int visibleSize,
131 m_scrollBar->setProportion(visibleSize, totalSize);
  /external/webkit/WebKit/mac/WebView/
WebDynamicScrollBarsView.mm 139 NSSize visibleSize = [self documentVisibleRect].size;
143 newHasHorizontalScroller = documentSize.width > visibleSize.width;
149 newHasVerticalScroller = documentSize.height > visibleSize.height;
  /external/webkit/WebCore/platform/qt/
ScrollbarThemeQt.cpp 117 opt.pageStep = scrollbar->visibleSize();
  /external/webkit/WebCore/platform/chromium/
ScrollbarThemeChromiumMac.mm 378 trackInfo.trackInfo.scrollbar.viewsize = scrollbar->visibleSize();
  /external/webkit/WebCore/platform/mac/
ScrollbarThemeMac.mm 365 trackInfo.trackInfo.scrollbar.viewsize = scrollbar->visibleSize();
  /prebuilt/common/ecj/
ecj.jar 

Completed in 426 milliseconds