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

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/
Widget.cpp 76 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;
158 IntRect Widget::convertToContainingView(const IntRect& localRect) const
161 IntRect parentRect(localRect);
162 parentRect.setLocation(parentWidget->convertChildToSelf(this, localRect.location()));
165 return localRect;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
Caret.cpp 147 LayoutRect localRect = caretPosition.localCaretRect(renderer);
161 localRect.move(renderer->offsetFromContainer(containerObject, localRect.location()));
166 m_caretLocalRect = localRect;
182 LayoutRect localRect(rect);
184 toRenderBox(caretPainter)->flipForWritingMode(localRect);
185 return caretPainter->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
RenderedPosition.cpp 230 IntRect localRect = pixelSnappedIntRect(m_renderer->localCaretRect(m_inlineBox, m_offset, extraWidthToEndOfLine));
231 return localRect == IntRect() ? IntRect() : m_renderer->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
VisiblePosition.cpp 675 LayoutRect localRect = localCaretRect(renderer);
676 if (localRect.isEmpty() || !renderer)
679 return renderer->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
685 LayoutRect localRect = localCaretRect(renderer);
686 if (localRect.isEmpty() || !renderer)
692 FloatPoint caretPoint = renderer->localToAbsolute(localRect.location());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderImage.h 93 virtual bool foregroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect, unsigned maxDepthToTest) const OVERRIDE FINAL;
RenderLayerScrollableArea.h 207 bool overflowControlsIntersectRect(const IntRect& localRect) const;
RenderView.h 180 virtual bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect) const OVERRIDE;
RenderLayerScrollableArea.cpp     [all...]
RenderImage.cpp 472 bool RenderImage::foregroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect, unsigned) const
478 if (!contentBoxRect().contains(localRect))
InlineFlowBox.cpp     [all...]
RenderBox.h 84 virtual bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect) const OVERRIDE;
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ExploreByTouchHelper.java 468 * portion of its parent {@link View}. Modifies {@code localRect} to contain
471 * @param localRect A rectangle in local (parent) coordinates.
474 private boolean intersectVisibleToUser(Rect localRect) {
476 if ((localRect == null) || localRect.isEmpty()) {
506 return localRect.intersect(mTempVisibleRect);
  /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.cpp 715 const SkRect* localRect,
723 set_vertex_attributes(this->drawState(), NULL != localRect);
733 if (NULL != localRect) {
736 coords->setRectFan(localRect->fLeft, localRect->fTop,
737 localRect->fRight, localRect->fBottom,
    [all...]
GrDrawTarget.h 367 * @param localRect optional rect that specifies local coords to map onto
369 * @param localMatrix optional matrix applied to localRect. If
376 const SkRect* localRect,
379 this->onDrawRect(rect, matrix, localRect, localMatrix);
    [all...]
GrInOrderDrawBuffer.cpp 140 const SkRect* localRect,
151 NULL != localRect,
196 coords->setRectFan(localRect->fLeft, localRect->fTop,
197 localRect->fRight, localRect->fBottom,
    [all...]
GrInOrderDrawBuffer.h 152 const SkRect* localRect,
  /external/skia/src/gpu/
GrDrawTarget.cpp 715 const SkRect* localRect,
723 set_vertex_attributes(this->drawState(), NULL != localRect);
733 if (NULL != localRect) {
736 coords->setRectFan(localRect->fLeft, localRect->fTop,
737 localRect->fRight, localRect->fBottom,
    [all...]
GrDrawTarget.h 367 * @param localRect optional rect that specifies local coords to map onto
369 * @param localMatrix optional matrix applied to localRect. If
376 const SkRect* localRect,
379 this->onDrawRect(rect, matrix, localRect, localMatrix);
    [all...]
GrInOrderDrawBuffer.cpp 140 const SkRect* localRect,
151 NULL != localRect,
196 coords->setRectFan(localRect->fLeft, localRect->fTop,
197 localRect->fRight, localRect->fBottom,
    [all...]
GrInOrderDrawBuffer.h 152 const SkRect* localRect,
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
Scrollbar.cpp 563 IntRect Scrollbar::convertToContainingView(const IntRect& localRect) const
566 return m_scrollableArea->convertFromScrollbarToContainingView(this, localRect);
568 return Widget::convertToContainingView(localRect);
ScrollView.cpp     [all...]
  /external/chromium_org/third_party/skia/include/gpu/
GrContext.h 476 * coordinates. Each rect can optionally be transformed. The localRect
483 * @param localRect rect of local coordinates to be mapped onto dstRect
485 * @param localMatrix Optional matrix to transform localRect.
489 const SkRect& localRect,
    [all...]
  /external/skia/include/gpu/
GrContext.h 476 * coordinates. Each rect can optionally be transformed. The localRect
483 * @param localRect rect of local coordinates to be mapped onto dstRect
485 * @param localMatrix Optional matrix to transform localRect.
489 const SkRect& localRect,
    [all...]

Completed in 341 milliseconds

1 2