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

  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.cpp 909 void ScrollView::calculateOverhangAreasForPainting(IntRect& horizontalOverhangRect, IntRect& verticalOverhangRect)
918 horizontalOverhangRect = frameRect();
919 horizontalOverhangRect.setHeight(-physicalScrollY);
920 horizontalOverhangRect.setWidth(horizontalOverhangRect.width() - verticalScrollbarWidth)
    [all...]
ScrollbarThemeMacCommon.mm 133 void ScrollbarThemeMacCommon::paintOverhangBackground(GraphicsContext* context, const IntRect& horizontalOverhangRect, const IntRect& verticalOverhangRect, const IntRect& dirtyRect)
135 const bool hasHorizontalOverhang = !horizontalOverhangRect.isEmpty();
147 context->fillRect(intersection(horizontalOverhangRect, dirtyRect));
152 void ScrollbarThemeMacCommon::paintOverhangShadows(GraphicsContext* context, const IntSize& scrollOffset, const IntRect& horizontalOverhangRect, const IntRect& verticalOverhangRect, const IntRect& dirtyRect)
171 const bool hasHorizontalOverhang = !horizontalOverhangRect.isEmpty();
185 IntRect shadowRect = horizontalOverhangRect;
189 toolbarShadowHeight = std::min(horizontalOverhangRect.height(), kShadowSize);
190 } else if (horizontalOverhangRect.height() < 2 * kShadowSize + kToolbarShadowOffset) {
192 shadowRect.setHeight((horizontalOverhangRect.height() + 1) / 2);
193 toolbarShadowHeight = horizontalOverhangRect.height() - shadowRect.height() - kToolbarShadowOffset
    [all...]
ScrollbarTheme.cpp 219 void ScrollbarTheme::paintOverhangBackground(GraphicsContext* context, const IntRect& horizontalOverhangRect, const IntRect& verticalOverhangRect, const IntRect& dirtyRect)
222 if (!horizontalOverhangRect.isEmpty())
223 context->fillRect(intersection(horizontalOverhangRect, dirtyRect));
ScrollView.h 341 void calculateOverhangAreasForPainting(IntRect& horizontalOverhangRect, IntRect& verticalOverhangRect);

Completed in 40 milliseconds