Searched refs:localRect (Results 1 - 10 of 10) sorted by relevance

/external/webkit/Source/WebCore/platform/
H A DWidget.cpp81 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; local
148 localRect.setLocation(parentScrollView->convertSelfToChild(this, localRect
[all...]
H A DScrollbar.cpp464 IntRect Scrollbar::convertToContainingView(const IntRect& localRect) const
467 return m_scrollableArea->convertFromScrollbarToContainingView(this, localRect);
469 return Widget::convertToContainingView(localRect);
H A DScrollView.cpp1178 IntRect ScrollView::convertFromScrollbarToContainingView(const Scrollbar* scrollbar, const IntRect& localRect) const
1181 IntRect newRect = localRect;
/external/webkit/Source/WebCore/editing/
H A DVisiblePosition.cpp584 IntRect localRect = localCaretRect(renderer); local
585 if (localRect.isEmpty() || !renderer)
588 return renderer->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
594 IntRect localRect = localCaretRect(renderer); local
595 if (localRect.isEmpty() || !renderer)
601 return renderer->localToAbsolute(localRect.location()).x();
H A DSelectionController.cpp1055 IntRect localRect = pos.localCaretRect(renderer); local
1069 localRect.move(renderer->offsetFromContainer(containerObject, localRect.location()));
1074 m_caretRect = localRect;
1112 IntRect localRect(rect);
1114 toRenderBox(caretPainter)->flipForWritingMode(localRect);
1115 return caretPainter->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
/external/webkit/Source/WebCore/rendering/
H A DInlineFlowBox.cpp1101 IntRect localRect(x, y, w, h);
1102 flipForWritingMode(localRect);
1103 tx += localRect.x();
1104 ty += localRect.y();
1183 IntRect localRect(x, y, w, h);
1184 flipForWritingMode(localRect);
1185 tx += localRect.x();
1186 ty += localRect.y();
H A DRenderInline.cpp558 FloatRect localRect(curr->x(), curr->y(), curr->width(), curr->height());
559 quads.append(localToAbsoluteQuad(localRect));
H A DRenderBlock.cpp5773 FloatRect localRect(0, -collapsedMarginBefore(),
5775 quads.append(localToAbsoluteQuad(localRect));
/external/webkit/Source/WebCore/dom/
H A DElement.cpp517 FloatRect localRect; local
518 if (svgElement->boundingBox(localRect))
519 quads.append(renderer()->localToAbsoluteQuad(localRect));
581 FloatRect localRect; local
582 if (svgElement->boundingBox(localRect))
583 quads.append(renderer()->localToAbsoluteQuad(localRect));
/external/webkit/Source/WebCore/page/
H A DFrameView.cpp2633 IntRect FrameView::convertToContainingView(const IntRect& localRect) const
2641 return localRect;
2643 IntRect rect(localRect);
2650 return Widget::convertToContainingView(localRect);
2653 return localRect;

Completed in 1495 milliseconds