OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:currentscrollposition
(Results
1 - 1
of
1
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.cpp
310
IntPoint
currentScrollPosition
= scrollPosition();
314
if (
currentScrollPosition
.x() < minScrollPosition.x())
315
stretch.setWidth(
currentScrollPosition
.x() - minScrollPosition.x());
316
if (
currentScrollPosition
.x() > maxScrollPosition.x())
317
stretch.setWidth(
currentScrollPosition
.x() - maxScrollPosition.x());
319
if (
currentScrollPosition
.y() < minScrollPosition.y())
320
stretch.setHeight(
currentScrollPosition
.y() - minScrollPosition.y());
321
if (
currentScrollPosition
.y() > maxScrollPosition.y())
322
stretch.setHeight(
currentScrollPosition
.y() - maxScrollPosition.y());
[
all
...]
Completed in 43 milliseconds