Searched refs:navBounds (Results 1 – 5 of 5) sorted by relevance
/external/webkit/Source/WebKit/android/nav/ |
D | CachedFrame.cpp | 1030 return history()->navBounds(); in _navBounds() 1246 const WebCore::IntRect& navBounds = history->navBounds(); in setDownDirection() local 1247 mMajorButt = mNodeBounds.y() - navBounds.maxY(); in setDownDirection() 1250 setNavOverlap(navBounds.width(), navBounds.maxX() - testX, in setDownDirection() 1251 testRight - navBounds.x()); in setDownDirection() 1256 int inNavTop = mNodeBounds.y() - navBounds.y(); in setDownDirection() 1259 navBounds.height()) >> 1); in setDownDirection() 1264 int inNavBottom = navBounds.maxY() - mNodeBounds.maxY(); in setDownDirection() 1265 setNavInclusion(testRight - navBounds.maxX(), navBounds.x() - testX); in setDownDirection() 1266 bool subsumes = navBounds.height() > 0 && inOrSubsumesNav(); in setDownDirection() [all …]
|
D | CachedHistory.cpp | 101 const WebCore::IntRect* navBounds = &mNavBounds; in setWorking() local 108 if (lastAxis != CachedFrame::LEFT && navBounds->height() > 0) { in setWorking() 109 mMinWorkingHorizontal = navBounds->y(); in setWorking() 110 mMaxWorkingHorizontal = navBounds->maxY(); in setWorking() 112 if (lastAxis != CachedFrame::UP && navBounds->width() > 0) { in setWorking() 113 mMinWorkingVertical = navBounds->x(); in setWorking() 114 mMaxWorkingVertical = navBounds->maxX(); in setWorking()
|
D | CachedRoot.cpp | 1265 const WebCore::IntRect& navBounds = mHistory->mNavBounds; in getSimulatedMousePosition() local 1268 navBounds.x(), navBounds.y(), navBounds.width(), navBounds.height(), in getSimulatedMousePosition() 1291 const WebCore::IntRect& navBounds = mHistory->mNavBounds; in innerDown() local 1292 if (navBounds.isEmpty() == false && in innerDown() 1293 navBounds.maxY() > viewBottom && viewBottom < mContents.height()) in innerDown() 1295 if (navBounds.isEmpty() == false) { in innerDown() 1296 int navTop = navBounds.y(); in innerDown() 1317 const WebCore::IntRect& navBounds = mHistory->mNavBounds; in innerLeft() local 1318 if (navBounds.isEmpty() == false && in innerLeft() 1319 navBounds.x() < viewLeft && viewLeft > mContents.x()) in innerLeft() [all …]
|
D | CachedHistory.h | 50 const WebCore::IntRect& navBounds() const { return mNavBounds; } in navBounds() function
|
D | WebView.cpp | 1106 WebCore::IntRect navBounds = WebCore::IntRect(rx, ry, 1, 1); in motionUp() local 1107 history->setNavBounds(navBounds); in motionUp() 1108 history->setMouseBounds(navBounds); in motionUp()
|