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

  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollableArea.cpp 445 int verticalScrollbarWidth = 0;
450 verticalScrollbarWidth = !verticalBar->isOverlayScrollbar() ? verticalBar->width() : 0;
457 std::max(0, visibleWidth() + verticalScrollbarWidth),
ScrollView.cpp 174 int verticalScrollbarWidth = 0;
178 verticalScrollbarWidth = !verticalBar->isOverlayScrollbar() ? verticalBar->width() : 0;
182 return IntSize(std::max(0, size.width() - verticalScrollbarWidth),
519 int verticalScrollbarWidth = (verticalScrollbar() && !hasLayerForVerticalScrollbar()) ? verticalScrollbar()->width() : 0;
522 scrollViewRect.setWidth(scrollViewRect.width() - verticalScrollbarWidth);
909 int verticalScrollbarWidth = (verticalScrollbar() && !verticalScrollbar()->isOverlayScrollbar())
918 horizontalOverhangRect.setWidth(horizontalOverhangRect.width() - verticalScrollbarWidth)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerScrollableArea.h 149 int verticalScrollbarWidth(OverlayScrollbarSizeRelevancy = IgnoreOverlayScrollbarSize) const;
RenderLayerScrollableArea.cpp 436 int verticalScrollbarWidth = 0;
439 verticalScrollbarWidth = (verticalScrollbar() && !verticalScrollbar()->isOverlayScrollbar()) ? verticalScrollbar()->width() : 0;
444 IntSize(max(0, layer()->size().width() - verticalScrollbarWidth), max(0, layer()->size().height() - horizontalScrollbarHeight)));
559 int scrollableLeftOverflow = m_overflowRect.x() - box().borderLeft() - (box().style()->shouldPlaceBlockDirectionScrollbarOnLogicalLeft() ? box().verticalScrollbarWidth() : 0);
    [all...]
RenderBox.h 253 LayoutUnit clientLeft() const { return borderLeft() + (style()->shouldPlaceBlockDirectionScrollbarOnLogicalLeft() ? verticalScrollbarWidth() : 0); }
468 virtual int verticalScrollbarWidth() const;
471 int scrollbarLogicalHeight() const { return style()->isHorizontalWritingMode() ? horizontalScrollbarHeight() : verticalScrollbarWidth(); }
    [all...]
RenderFlexibleBox.cpp 574 return isHorizontalFlow() ? horizontalScrollbarHeight() : verticalScrollbarWidth();
579 return isHorizontalFlow() ? child.horizontalScrollbarHeight() : child.verticalScrollbarWidth();
    [all...]
RenderBox.cpp 321 return width() - borderLeft() - borderRight() - verticalScrollbarWidth();
627 int RenderBox::verticalScrollbarWidth() const
632 return layer()->scrollableArea()->verticalScrollbarWidth();
650 return verticalScrollbarWidth();
    [all...]
RenderBlockLineLayout.cpp 534 logicalLeft += verticalScrollbarWidth();
    [all...]
RenderBlockFlow.cpp 510 startPosition -= verticalScrollbarWidth();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.cpp 270 contentBox.setWidth(contentBox.width() + renderBox->verticalScrollbarWidth());
  /external/chromium_org/third_party/WebKit/Source/web/
WebViewImpl.cpp     [all...]

Completed in 215 milliseconds