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

  /external/webkit/WebCore/platform/
Widget.cpp 81 IntRect Widget::convertToContainingWindow(const IntRect& localRect) const
84 IntRect parentRect = convertToContainingView(localRect);
87 return convertFromRootToContainingWindow(this, localRect);
140 IntRect Widget::convertToContainingView(const IntRect& localRect) const
143 IntRect parentRect(localRect);
144 parentRect.setLocation(parentScrollView->convertChildToSelf(this, localRect.location()));
147 return localRect;
153 IntRect localRect = parentRect;
154 localRect.setLocation(parentScrollView->convertSelfToChild(this, localRect.location()))
    [all...]
  /external/webkit/WebCore/editing/
VisiblePosition.cpp 559 IntRect localRect = localCaretRect(renderer);
560 if (localRect.isEmpty() || !renderer)
563 return renderer->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
569 IntRect localRect = localCaretRect(renderer);
570 if (localRect.isEmpty() || !renderer)
576 return renderer->localToAbsolute(localRect.location()).x();
SelectionController.cpp 836 IntRect localRect = pos.localCaretRect(renderer);
857 localRect.move(offsetFromPainter);
858 m_caretRect = localRect;
    [all...]

Completed in 91 milliseconds