HomeSort by relevance Sort by last modified time
    Searched refs:endCaretRect (Results 1 - 3 of 3) sorted by null

  /external/webkit/WebCore/page/
Frame.cpp 338 IntRect endCaretRect = endRenderer->localCaretRect(endInlineBox, endCaretOffset);
339 if (endCaretRect != IntRect())
340 endCaretRect = endRenderer->localToAbsoluteQuad(FloatRect(endCaretRect)).enclosingBoundingBox();
342 if (startCaretRect.y() == endCaretRect.y()) {
344 return IntRect(min(startCaretRect.x(), endCaretRect.x()),
346 abs(endCaretRect.x() - startCaretRect.x()),
347 max(startCaretRect.height(), endCaretRect.height()));
    [all...]
  /external/webkit/WebKit/gtk/webkit/
webkitwebview.cpp 306 IntRect endCaretRect = renderer->localCaretRect(endInlineBox, endCaretOffset);
307 if (endCaretRect != IntRect())
308 endCaretRect = renderer->localToAbsoluteQuad(FloatRect(endCaretRect)).enclosingBoundingBox();
311 if (startCaretRect.y() == endCaretRect.y())
312 firstRect = IntRect(MIN(startCaretRect.x(), endCaretRect.x()),
314 abs(endCaretRect.x() - startCaretRect.x()),
315 MAX(startCaretRect.height(), endCaretRect.height()));
    [all...]
  /external/webkit/WebKit/win/
WebView.cpp     [all...]

Completed in 32 milliseconds