Searched refs:horizontalOverhangRect (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollView.cpp926 void ScrollView::calculateOverhangAreasForPainting(IntRect& horizontalOverhangRect, IntRect& verticalOverhangRect) argument
935 horizontalOverhangRect = frameRect();
936 horizontalOverhangRect.setHeight(-physicalScrollY);
937 horizontalOverhangRect.setWidth(horizontalOverhangRect.width() - verticalScrollbarWidth);
940 horizontalOverhangRect = frameRect();
941 horizontalOverhangRect.setY(frameRect().maxY() - height - horizontalScrollbarHeight);
942 horizontalOverhangRect.setHeight(height);
943 horizontalOverhangRect.setWidth(horizontalOverhangRect
982 paintOverhangAreas(GraphicsContext* context, const IntRect& horizontalOverhangRect, const IntRect& verticalOverhangRect, const IntRect& dirtyRect) argument
990 IntRect horizontalOverhangRect; local
1000 IntRect horizontalOverhangRect; local
[all...]
H A DScrollbarThemeMacCommon.mm135 void ScrollbarThemeMacCommon::paintOverhangBackground(GraphicsContext* context, const IntRect& horizontalOverhangRect, const IntRect& verticalOverhangRect, const IntRect& dirtyRect)
137 const bool hasHorizontalOverhang = !horizontalOverhangRect.isEmpty();
149 context->fillRect(intersection(horizontalOverhangRect, dirtyRect));
154 void ScrollbarThemeMacCommon::paintOverhangShadows(GraphicsContext* context, const IntSize& scrollOffset, const IntRect& horizontalOverhangRect, const IntRect& verticalOverhangRect, const IntRect& dirtyRect)
173 const bool hasHorizontalOverhang = !horizontalOverhangRect.isEmpty();
187 IntRect shadowRect = horizontalOverhangRect;
191 toolbarShadowHeight = std::min(horizontalOverhangRect.height(), kShadowSize);
192 } else if (horizontalOverhangRect.height() < 2 * kShadowSize + kToolbarShadowOffset) {
194 shadowRect.setHeight((horizontalOverhangRect.height() + 1) / 2);
195 toolbarShadowHeight = horizontalOverhangRect
[all...]
H A DScrollbarTheme.cpp318 void ScrollbarTheme::paintOverhangBackground(GraphicsContext* context, const IntRect& horizontalOverhangRect, const IntRect& verticalOverhangRect, const IntRect& dirtyRect) argument
321 if (!horizontalOverhangRect.isEmpty())
322 context->fillRect(intersection(horizontalOverhangRect, dirtyRect));
H A DScrollView.h338 void calculateOverhangAreasForPainting(IntRect& horizontalOverhangRect, IntRect& verticalOverhangRect);

Completed in 131 milliseconds