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

  /external/webkit/WebCore/page/
Frame.cpp 329 IntRect startCaretRect = startRenderer->localCaretRect(startInlineBox, startCaretOffset, &extraWidthToEndOfLine);
330 if (startCaretRect != IntRect())
331 startCaretRect = startRenderer->localToAbsoluteQuad(FloatRect(startCaretRect)).enclosingBoundingBox();
342 if (startCaretRect.y() == endCaretRect.y()) {
344 return IntRect(min(startCaretRect.x(), endCaretRect.x()),
345 startCaretRect.y(),
346 abs(endCaretRect.x() - startCaretRect.x()),
347 max(startCaretRect.height(), endCaretRect.height()));
351 return IntRect(startCaretRect.x()
    [all...]
  /external/webkit/WebKit/gtk/webkit/
webkitwebview.cpp 299 IntRect startCaretRect = renderer->localCaretRect(startInlineBox, startCaretOffset, &extraWidthToEndOfLine);
300 if (startCaretRect != IntRect())
301 startCaretRect = renderer->localToAbsoluteQuad(FloatRect(startCaretRect)).enclosingBoundingBox();
311 if (startCaretRect.y() == endCaretRect.y())
312 firstRect = IntRect(MIN(startCaretRect.x(), endCaretRect.x()),
313 startCaretRect.y(),
314 abs(endCaretRect.x() - startCaretRect.x()),
315 MAX(startCaretRect.height(), endCaretRect.height()));
317 firstRect = IntRect(startCaretRect.x()
    [all...]
  /external/webkit/WebKit/win/
WebView.cpp     [all...]

Completed in 51 milliseconds