Home
last modified time | relevance | path

Searched refs:localRect (Results 1 – 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/platform/
DWidget.cpp81 IntRect Widget::convertToContainingWindow(const IntRect& localRect) const in convertToContainingWindow()
84 IntRect parentRect = convertToContainingView(localRect); in convertToContainingWindow()
87 return convertFromRootToContainingWindow(this, localRect); in convertToContainingWindow()
134 IntRect Widget::convertToContainingView(const IntRect& localRect) const in convertToContainingView()
137 IntRect parentRect(localRect); in convertToContainingView()
138 parentRect.setLocation(parentScrollView->convertChildToSelf(this, localRect.location())); in convertToContainingView()
141 return localRect; in convertToContainingView()
147 IntRect localRect = parentRect; in convertFromContainingView() local
148 localRect.setLocation(parentScrollView->convertSelfToChild(this, localRect.location())); in convertFromContainingView()
149 return localRect; in convertFromContainingView()
DScrollbar.cpp464 IntRect Scrollbar::convertToContainingView(const IntRect& localRect) const in convertToContainingView()
467 return m_scrollableArea->convertFromScrollbarToContainingView(this, localRect); in convertToContainingView()
469 return Widget::convertToContainingView(localRect); in convertToContainingView()
DScrollView.cpp1178 …w::convertFromScrollbarToContainingView(const Scrollbar* scrollbar, const IntRect& localRect) const in wheelEvent()
1181 IntRect newRect = localRect; in wheelEvent()
/external/webkit/Source/WebCore/editing/
DVisiblePosition.cpp584 IntRect localRect = localCaretRect(renderer); in absoluteCaretBounds() local
585 if (localRect.isEmpty() || !renderer) in absoluteCaretBounds()
588 return renderer->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox(); in absoluteCaretBounds()
594 IntRect localRect = localCaretRect(renderer); in xOffsetForVerticalNavigation() local
595 if (localRect.isEmpty() || !renderer) in xOffsetForVerticalNavigation()
601 return renderer->localToAbsolute(localRect.location()).x(); in xOffsetForVerticalNavigation()
DSelectionController.cpp1055 IntRect localRect = pos.localCaretRect(renderer); in updateCaretRect() local
1069localRect.move(renderer->offsetFromContainer(containerObject, localRect.location())); in updateCaretRect()
1074 m_caretRect = localRect; in updateCaretRect()
1112 IntRect localRect(rect); in absoluteBoundsForLocalRect() local
1114 toRenderBox(caretPainter)->flipForWritingMode(localRect); in absoluteBoundsForLocalRect()
1115 return caretPainter->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox(); in absoluteBoundsForLocalRect()
/external/webkit/Source/WebCore/rendering/
DInlineFlowBox.cpp1101 IntRect localRect(x, y, w, h); in paintBoxDecorations() local
1102 flipForWritingMode(localRect); in paintBoxDecorations()
1103 tx += localRect.x(); in paintBoxDecorations()
1104 ty += localRect.y(); in paintBoxDecorations()
1183 IntRect localRect(x, y, w, h); in paintMask() local
1184 flipForWritingMode(localRect); in paintMask()
1185 tx += localRect.x(); in paintMask()
1186 ty += localRect.y(); in paintMask()
DRenderInline.cpp558 FloatRect localRect(curr->x(), curr->y(), curr->width(), curr->height()); in absoluteQuads() local
559 quads.append(localToAbsoluteQuad(localRect)); in absoluteQuads()
DRenderBlock.cpp5773 FloatRect localRect(0, -collapsedMarginBefore(), in absoluteQuads() local
5775 quads.append(localToAbsoluteQuad(localRect)); in absoluteQuads()
/external/webkit/Source/WebCore/dom/
DElement.cpp517 FloatRect localRect; in boundsInWindowSpace() local
518 if (svgElement->boundingBox(localRect)) in boundsInWindowSpace()
519 quads.append(renderer()->localToAbsoluteQuad(localRect)); in boundsInWindowSpace()
581 FloatRect localRect; in getBoundingClientRect() local
582 if (svgElement->boundingBox(localRect)) in getBoundingClientRect()
583 quads.append(renderer()->localToAbsoluteQuad(localRect)); in getBoundingClientRect()
/external/webkit/Source/WebCore/page/
DFrameView.cpp2633 IntRect FrameView::convertToContainingView(const IntRect& localRect) const in convertToContainingView()
2641 return localRect; in convertToContainingView()
2643 IntRect rect(localRect); in convertToContainingView()
2650 return Widget::convertToContainingView(localRect); in convertToContainingView()
2653 return localRect; in convertToContainingView()
/external/webkit/Source/WebCore/
DChangeLog45526 Selection uses first mousemove's localRect instead of that of mousedown