HomeSort by relevance Sort by last modified time
    Searched refs:localRect (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/platform/
Widget.cpp 91 IntRect Widget::convertToRootView(const IntRect& localRect) const
94 IntRect parentRect = convertToContainingView(localRect);
97 return localRect;
127 IntRect Widget::convertToContainingWindow(const IntRect& localRect) const
130 IntRect parentRect = convertToContainingView(localRect);
133 return localRect;
154 IntRect Widget::convertToContainingView(const IntRect& localRect) const
157 IntRect parentRect(localRect);
158 parentRect.setLocation(parentScrollView->convertChildToSelf(this, localRect.location()));
161 return localRect;
    [all...]
Scrollbar.cpp 555 IntRect Scrollbar::convertToContainingView(const IntRect& localRect) const
558 return m_scrollableArea->convertFromScrollbarToContainingView(this, localRect);
560 return Widget::convertToContainingView(localRect);
ScrollView.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
Caret.cpp 154 LayoutRect localRect = caretPosition.localCaretRect(renderer);
168 localRect.move(renderer->offsetFromContainer(containerObject, localRect.location()));
173 m_caretLocalRect = localRect;
189 LayoutRect localRect(rect);
191 toRenderBox(caretPainter)->flipForWritingMode(localRect);
192 return caretPainter->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
RenderedPosition.cpp 231 IntRect localRect = pixelSnappedIntRect(m_renderer->localCaretRect(m_inlineBox, m_offset, extraWidthToEndOfLine));
232 return localRect == IntRect() ? IntRect() : m_renderer->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
VisiblePosition.cpp 625 LayoutRect localRect = localCaretRect(renderer);
626 if (localRect.isEmpty() || !renderer)
629 return renderer->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
635 LayoutRect localRect = localCaretRect(renderer);
636 if (localRect.isEmpty() || !renderer)
642 FloatPoint caretPoint = renderer->localToAbsolute(localRect.location());
  /frameworks/support/v4/java/android/support/v4/widget/
ExploreByTouchHelper.java 476 * portion of its parent {@link View}. Modifies {@code localRect} to contain
479 * @param localRect A rectangle in local (parent) coordinates.
482 private boolean intersectVisibleToUser(Rect localRect) {
484 if ((localRect == null) || localRect.isEmpty()) {
514 return localRect.intersect(mTempVisibleRect);
  /external/chromium_org/third_party/skia/src/gpu/
GrDrawTarget.h 339 * @param localRect optional rect that specifies local coords to map onto
341 * @param localMatrix optional matrix applied to localRect. If
348 const SkRect* localRect,
351 this->onDrawRect(rect, matrix, localRect, localMatrix);
    [all...]
GrDrawTarget.cpp 620 const SkRect* localRect,
628 set_vertex_attributes(this->drawState(), NULL != localRect);
638 if (NULL != localRect) {
641 coords->setRectFan(localRect->fLeft, localRect->fTop,
642 localRect->fRight, localRect->fBottom,
    [all...]
GrInOrderDrawBuffer.h 127 const SkRect* localRect,
GrInOrderDrawBuffer.cpp 122 const SkRect* localRect,
133 NULL != localRect,
178 coords->setRectFan(localRect->fLeft, localRect->fTop,
179 localRect->fRight, localRect->fBottom,
  /external/skia/src/gpu/
GrDrawTarget.h 339 * @param localRect optional rect that specifies local coords to map onto
341 * @param localMatrix optional matrix applied to localRect. If
348 const SkRect* localRect,
351 this->onDrawRect(rect, matrix, localRect, localMatrix);
    [all...]
GrDrawTarget.cpp 620 const SkRect* localRect,
628 set_vertex_attributes(this->drawState(), NULL != localRect);
638 if (NULL != localRect) {
641 coords->setRectFan(localRect->fLeft, localRect->fTop,
642 localRect->fRight, localRect->fBottom,
    [all...]
GrInOrderDrawBuffer.h 127 const SkRect* localRect,
GrInOrderDrawBuffer.cpp 122 const SkRect* localRect,
133 NULL != localRect,
178 coords->setRectFan(localRect->fLeft, localRect->fTop,
179 localRect->fRight, localRect->fBottom,
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderImage.h 91 virtual bool foregroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect, unsigned maxDepthToTest) const OVERRIDE FINAL;
RenderImage.cpp 472 bool RenderImage::foregroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect, unsigned maxDepthToTest) const
479 if (!contentBoxRect().contains(localRect))
RenderView.h 202 virtual bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect) const OVERRIDE FINAL;
InlineFlowBox.cpp     [all...]
RenderBox.h 54 virtual bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect) const OVERRIDE;
    [all...]
RenderLayer.cpp     [all...]
  /external/chromium_org/third_party/skia/include/gpu/
GrContext.h 407 * coordinates. Each rect can optionally be transformed. The localRect
414 * @param localRect rect of local coordinates to be mapped onto dstRect
416 * @param localMatrix Optional matrix to transform localRect.
420 const SkRect& localRect,
    [all...]
  /external/skia/include/gpu/
GrContext.h 407 * coordinates. Each rect can optionally be transformed. The localRect
414 * @param localRect rect of local coordinates to be mapped onto dstRect
416 * @param localMatrix Optional matrix to transform localRect.
420 const SkRect& localRect,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameView.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp 741 FloatRect localRect;
742 if (svgElement->getBoundingBox(localRect))
743 quads.append(renderer()->localToAbsoluteQuad(localRect));
786 FloatRect localRect;
787 if (svgElement->getBoundingBox(localRect))
788 quads.append(renderer()->localToAbsoluteQuad(localRect));
    [all...]

Completed in 599 milliseconds

1 2