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

  /external/webkit/Source/WebCore/platform/
Widget.cpp 81 IntRect Widget::convertToContainingWindow(const IntRect& localRect) const
84 IntRect parentRect = convertToContainingView(localRect);
87 return convertFromRootToContainingWindow(this, localRect);
134 IntRect Widget::convertToContainingView(const IntRect& localRect) const
137 IntRect parentRect(localRect);
138 parentRect.setLocation(parentScrollView->convertChildToSelf(this, localRect.location()));
141 return localRect;
147 IntRect localRect = parentRect;
148 localRect.setLocation(parentScrollView->convertSelfToChild(this, localRect.location()))
    [all...]
  /external/webkit/Source/WebCore/editing/
VisiblePosition.cpp 584 IntRect localRect = localCaretRect(renderer);
585 if (localRect.isEmpty() || !renderer)
588 return renderer->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
594 IntRect localRect = localCaretRect(renderer);
595 if (localRect.isEmpty() || !renderer)
601 return renderer->localToAbsolute(localRect.location()).x();
SelectionController.cpp     [all...]
  /external/webkit/Source/WebCore/dom/
Element.cpp 517 FloatRect localRect;
518 if (svgElement->boundingBox(localRect))
519 quads.append(renderer()->localToAbsoluteQuad(localRect));
581 FloatRect localRect;
582 if (svgElement->boundingBox(localRect))
583 quads.append(renderer()->localToAbsoluteQuad(localRect));
    [all...]

Completed in 43 milliseconds