OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:verticalOverhangRect
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.cpp
907
void ScrollView::calculateOverhangAreasForPainting(IntRect& horizontalOverhangRect, IntRect&
verticalOverhangRect
)
[
all
...]
ScrollbarThemeMacCommon.mm
132
void ScrollbarThemeMacCommon::paintOverhangBackground(GraphicsContext* context, const IntRect& horizontalOverhangRect, const IntRect&
verticalOverhangRect
, const IntRect& dirtyRect)
135
const bool hasVerticalOverhang = !
verticalOverhangRect
.isEmpty();
148
context->fillRect(intersection(
verticalOverhangRect
, dirtyRect));
151
void ScrollbarThemeMacCommon::paintOverhangShadows(GraphicsContext* context, const IntSize& scrollOffset, const IntRect& horizontalOverhangRect, const IntRect&
verticalOverhangRect
, const IntRect& dirtyRect)
171
const bool hasVerticalOverhang = !
verticalOverhangRect
.isEmpty();
203
shadowRect.setWidth(shadowRect.width() -
verticalOverhangRect
.width());
205
shadowRect.setX(shadowRect.x() +
verticalOverhangRect
.width());
232
IntRect shadowRect =
verticalOverhangRect
;
235
shadowRect.setX(
verticalOverhangRect
.maxX() - shadowRect.width());
246
shadowRect =
verticalOverhangRect
;
[
all
...]
ScrollbarTheme.cpp
217
void ScrollbarTheme::paintOverhangBackground(GraphicsContext* context, const IntRect& horizontalOverhangRect, const IntRect&
verticalOverhangRect
, const IntRect& dirtyRect)
222
if (!
verticalOverhangRect
.isEmpty())
223
context->fillRect(intersection(
verticalOverhangRect
, dirtyRect));
ScrollView.h
341
void calculateOverhangAreasForPainting(IntRect& horizontalOverhangRect, IntRect&
verticalOverhangRect
);
Completed in 71 milliseconds