OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:horizontaloverhangrect
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeMacCommon.mm
135
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
.height() - shadowRect.height() - kToolbarShadowOffset
[
all
...]
ScrollView.cpp
[
all
...]
ScrollbarTheme.cpp
318
void ScrollbarTheme::paintOverhangBackground(GraphicsContext* context, const IntRect&
horizontalOverhangRect
, const IntRect& verticalOverhangRect, const IntRect& dirtyRect)
321
if (!
horizontalOverhangRect
.isEmpty())
322
context->fillRect(intersection(
horizontalOverhangRect
, dirtyRect));
ScrollView.h
338
void calculateOverhangAreasForPainting(IntRect&
horizontalOverhangRect
, IntRect& verticalOverhangRect);
Completed in 44 milliseconds