OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:currentScrollPosition
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.cpp
306
IntPoint
currentScrollPosition
= scrollPosition();
310
if (
currentScrollPosition
.x() < minScrollPosition.x())
311
stretch.setWidth(
currentScrollPosition
.x() - minScrollPosition.x());
312
if (
currentScrollPosition
.x() > maxScrollPosition.x())
313
stretch.setWidth(
currentScrollPosition
.x() - maxScrollPosition.x());
315
if (
currentScrollPosition
.y() < minScrollPosition.y())
316
stretch.setHeight(
currentScrollPosition
.y() - minScrollPosition.y());
317
if (
currentScrollPosition
.y() > maxScrollPosition.y())
318
stretch.setHeight(
currentScrollPosition
.y() - maxScrollPosition.y());
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollAnimatorMac.mm
774
IntPoint
currentScrollPosition
= absoluteScrollPosition();
776
immediateScrollBy(nearestPointWithinBounds -
currentScrollPosition
);
[
all
...]
Completed in 50 milliseconds