Searched defs:localRect (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/
H A DWidget.cpp76 IntRect Widget::convertToRootView(const IntRect& localRect) const
79 IntRect parentRect = convertToContainingView(localRect);
82 return localRect;
112 IntRect Widget::convertToContainingWindow(const IntRect& localRect) const
115 IntRect parentRect = convertToContainingView(localRect);
118 return localRect;
139 IntRect Widget::convertToContainingView(const IntRect& localRect) const
142 IntRect parentRect(localRect);
143 parentRect.setLocation(parentWidget->convertChildToSelf(this, localRect.location()));
146 return localRect;
152 IntRect localRect = parentRect; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCaret.cpp141 LayoutRect localRect = caretPosition.localCaretRect(renderer); local
155 localRect.move(renderer->offsetFromContainer(containerObject, localRect.location()));
160 m_caretLocalRect = localRect;
176 LayoutRect localRect(rect);
178 toRenderBox(caretPainter)->flipForWritingMode(localRect);
179 return caretPainter->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
H A DVisiblePosition.cpp676 LayoutRect localRect = localCaretRect(renderer); local
677 if (localRect.isEmpty() || !renderer)
680 return renderer->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
686 LayoutRect localRect = localCaretRect(renderer); local
687 if (localRect.isEmpty() || !renderer)
693 FloatPoint caretPoint = renderer->localToAbsolute(localRect.location());
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderImage.cpp490 bool RenderImage::foregroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect, unsigned) const argument
496 if (!contentBoxRect().contains(localRect))
H A DRenderBox.cpp1346 bool RenderBox::backgroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect) const
1383 return backgroundRect.contains(localRect);
1410 bool RenderBox::foregroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect, unsigned maxDepthToTest) const argument
1423 LayoutRect childLocalRect = localRect;
/external/chromium_org/third_party/skia/src/gpu/
H A DGrDrawTarget.h352 * @param localRect optional rect that specifies local coords to map onto
354 * @param localMatrix optional matrix applied to localRect. If
361 const SkRect* localRect,
364 this->onDrawRect(rect, matrix, localRect, localMatrix);
850 const SkRect* localRect,
359 drawRect(const SkRect& rect, const SkMatrix* matrix, const SkRect* localRect, const SkMatrix* localMatrix) argument
H A DGrDrawTarget.cpp643 const SkRect* localRect,
651 set_vertex_attributes(this->drawState(), NULL != localRect);
661 if (NULL != localRect) {
664 coords->setRectFan(localRect->fLeft, localRect->fTop,
665 localRect->fRight, localRect->fBottom,
641 onDrawRect(const SkRect& rect, const SkMatrix* matrix, const SkRect* localRect, const SkMatrix* localMatrix) argument
H A DGrInOrderDrawBuffer.cpp123 const SkRect* localRect,
134 NULL != localRect,
179 coords->setRectFan(localRect->fLeft, localRect->fTop,
180 localRect->fRight, localRect->fBottom,
121 onDrawRect(const SkRect& rect, const SkMatrix* matrix, const SkRect* localRect, const SkMatrix* localMatrix) argument
H A DGrContext.cpp886 const SkRect& localRect,
894 target->drawRect(dstRect, dstMatrix, &localRect, localMatrix);
884 drawRectToRect(const GrPaint& paint, const SkRect& dstRect, const SkRect& localRect, const SkMatrix* dstMatrix, const SkMatrix* localMatrix) argument
/external/skia/src/gpu/
H A DGrDrawTarget.h352 * @param localRect optional rect that specifies local coords to map onto
354 * @param localMatrix optional matrix applied to localRect. If
361 const SkRect* localRect,
364 this->onDrawRect(rect, matrix, localRect, localMatrix);
850 const SkRect* localRect,
359 drawRect(const SkRect& rect, const SkMatrix* matrix, const SkRect* localRect, const SkMatrix* localMatrix) argument
H A DGrDrawTarget.cpp643 const SkRect* localRect,
651 set_vertex_attributes(this->drawState(), NULL != localRect);
661 if (NULL != localRect) {
664 coords->setRectFan(localRect->fLeft, localRect->fTop,
665 localRect->fRight, localRect->fBottom,
641 onDrawRect(const SkRect& rect, const SkMatrix* matrix, const SkRect* localRect, const SkMatrix* localMatrix) argument
H A DGrInOrderDrawBuffer.cpp123 const SkRect* localRect,
134 NULL != localRect,
179 coords->setRectFan(localRect->fLeft, localRect->fTop,
180 localRect->fRight, localRect->fBottom,
121 onDrawRect(const SkRect& rect, const SkMatrix* matrix, const SkRect* localRect, const SkMatrix* localMatrix) argument
H A DGrContext.cpp886 const SkRect& localRect,
894 target->drawRect(dstRect, dstMatrix, &localRect, localMatrix);
884 drawRectToRect(const GrPaint& paint, const SkRect& dstRect, const SkRect& localRect, const SkMatrix* dstMatrix, const SkMatrix* localMatrix) argument
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElement.cpp795 FloatRect localRect; local
796 if (svgElement->getBoundingBox(localRect))
797 quads.append(renderer()->localToAbsoluteQuad(localRect));
840 FloatRect localRect; local
841 if (svgElement->getBoundingBox(localRect))
842 quads.append(renderer()->localToAbsoluteQuad(localRect));
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.cpp1775 bool CanvasRenderingContext2D::computeDirtyRect(const FloatRect& localRect, FloatRect* dirtyRect) argument
1780 return computeDirtyRect(localRect, clipBounds, dirtyRect);
1783 bool CanvasRenderingContext2D::computeDirtyRect(const FloatRect& localRect, const FloatRect& transformedClipBounds, FloatRect* dirtyRect) argument
1785 FloatRect canvasRect = state().m_transform.mapRect(localRect);

Completed in 734 milliseconds