Home
last modified time | relevance | path

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

/external/webkit/Source/WebKit/android/nav/
DCachedNode.cpp181 WebCore::IntRect* checkBoundsPtr = mCursorRing.begin() - 1; in fixUpCursorRects() local
182 while (++checkBoundsPtr < unitBoundsEnd) { in fixUpCursorRects()
183 if (checkBoundsPtr->intersects(candidate) == false) in fixUpCursorRects()
186 if (candidateTop >= checkBoundsPtr->y() && in fixUpCursorRects()
187 candidateBottom > checkBoundsPtr->maxY()) in fixUpCursorRects()
188 candidateTop = checkBoundsPtr->maxY(); in fixUpCursorRects()
189 else if (candidateTop < checkBoundsPtr->y() && in fixUpCursorRects()
190 candidateBottom <= checkBoundsPtr->maxY()) in fixUpCursorRects()
191 candidateBottom = checkBoundsPtr->y(); in fixUpCursorRects()
195 if (candidateLeft >= checkBoundsPtr->x() && in fixUpCursorRects()
[all …]