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

  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollableArea.cpp 446 int horizontalScrollbarHeight = 0;
452 horizontalScrollbarHeight = !horizontalBar->isOverlayScrollbar() ? horizontalBar->height() : 0;
458 std::max(0, visibleHeight() + horizontalScrollbarHeight));
ScrollView.cpp 175 int horizontalScrollbarHeight = 0;
180 horizontalScrollbarHeight = !horizontalBar->isOverlayScrollbar() ? horizontalBar->height() : 0;
183 std::max(0, size.height() - horizontalScrollbarHeight));
520 int horizontalScrollbarHeight = (horizontalScrollbar() && !hasLayerForHorizontalScrollbar()) ? horizontalScrollbar()->height() : 0;
523 scrollViewRect.setHeight(scrollViewRect.height() - horizontalScrollbarHeight);
911 int horizontalScrollbarHeight = (horizontalScrollbar() && !horizontalScrollbar()->isOverlayScrollbar())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerScrollableArea.h 150 int horizontalScrollbarHeight(OverlayScrollbarSizeRelevancy = IgnoreOverlayScrollbarSize) const;
RenderLayerScrollableArea.cpp 437 int horizontalScrollbarHeight = 0;
440 horizontalScrollbarHeight = (horizontalScrollbar() && !horizontalScrollbar()->isOverlayScrollbar()) ? horizontalScrollbar()->height() : 0;
444 IntSize(max(0, layer()->size().width() - verticalScrollbarWidth), max(0, layer()->size().height() - horizontalScrollbarHeight)));
    [all...]
RenderFlexibleBox.cpp 574 return isHorizontalFlow() ? horizontalScrollbarHeight() : verticalScrollbarWidth();
579 return isHorizontalFlow() ? child.horizontalScrollbarHeight() : child.verticalScrollbarWidth();
    [all...]
RenderBox.h 469 int horizontalScrollbarHeight() const;
471 int scrollbarLogicalHeight() const { return style()->isHorizontalWritingMode() ? horizontalScrollbarHeight() : verticalScrollbarWidth(); }
    [all...]
RenderDeprecatedFlexibleBox.cpp 328 LayoutUnit toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight();
619 LayoutUnit toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight();
    [all...]
RenderBox.cpp 326 return height() - borderTop() - borderBottom() - horizontalScrollbarHeight();
635 int RenderBox::horizontalScrollbarHeight() const
640 return layer()->scrollableArea()->horizontalScrollbarHeight();
655 return horizontalScrollbarHeight();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.cpp 271 contentBox.setHeight(contentBox.height() + renderBox->horizontalScrollbarHeight());

Completed in 81 milliseconds