Home
last modified time | relevance | path

Searched refs:navBounds (Results 1 – 5 of 5) sorted by relevance

/external/webkit/WebKit/android/nav/
DCachedFrame.cpp971 return history()->navBounds(); in _navBounds()
1178 const WebCore::IntRect& navBounds = history->navBounds(); in setDownDirection() local
1179 mMajorButt = mNodeBounds.y() - navBounds.bottom(); in setDownDirection()
1182 setNavOverlap(navBounds.width(), navBounds.right() - testX, in setDownDirection()
1183 testRight - navBounds.x()); in setDownDirection()
1188 int inNavTop = mNodeBounds.y() - navBounds.y(); in setDownDirection()
1191 navBounds.height()) >> 1); in setDownDirection()
1196 int inNavBottom = navBounds.bottom() - mNodeBounds.bottom(); in setDownDirection()
1197 setNavInclusion(testRight - navBounds.right(), navBounds.x() - testX); in setDownDirection()
1198 bool subsumes = navBounds.height() > 0 && inOrSubsumesNav(); in setDownDirection()
[all …]
DCachedHistory.cpp105 const WebCore::IntRect* navBounds = &mNavBounds; in setWorking() local
112 if (lastAxis != CachedFrame::LEFT && navBounds->height() > 0) { in setWorking()
113 mMinWorkingHorizontal = navBounds->y(); in setWorking()
114 mMaxWorkingHorizontal = navBounds->bottom(); in setWorking()
116 if (lastAxis != CachedFrame::UP && navBounds->width() > 0) { in setWorking()
117 mMinWorkingVertical = navBounds->x(); in setWorking()
118 mMaxWorkingVertical = navBounds->right(); in setWorking()
DCachedRoot.cpp880 const WebCore::IntRect& navBounds = mHistory->mNavBounds; in getSimulatedMousePosition() local
883 navBounds.x(), navBounds.y(), navBounds.width(), navBounds.height(), in getSimulatedMousePosition()
906 const WebCore::IntRect& navBounds = mHistory->mNavBounds; in innerDown() local
907 if (navBounds.isEmpty() == false && in innerDown()
908 navBounds.bottom() > viewBottom && viewBottom < mContents.height()) in innerDown()
910 if (navBounds.isEmpty() == false) { in innerDown()
911 int navTop = navBounds.y(); in innerDown()
932 const WebCore::IntRect& navBounds = mHistory->mNavBounds; in innerLeft() local
933 if (navBounds.isEmpty() == false && in innerLeft()
934 navBounds.x() < viewLeft && viewLeft > mContents.x()) in innerLeft()
[all …]
DCachedHistory.h50 const WebCore::IntRect& navBounds() const { return mNavBounds; } in navBounds() function
DWebView.cpp824 return root ? root->rootHistory()->navBounds() : in getNavBounds()
880 WebCore::IntRect navBounds = WebCore::IntRect(rx, ry, 1, 1); in motionUp() local
881 setNavBounds(navBounds); in motionUp()
882 root->rootHistory()->setMouseBounds(navBounds); in motionUp()